Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Array Set Challenge

Does anyone understand understand this question:

On line 18, use a method on the 'spareWords' to set 'firstWord' to be first word of the 'spareWords' array whilst simultaneously removing it from the beginning of the array.

<script>
      var spareWords = ["The","chimney","sweep's","dog"];
      var saying = ["quick", "brown", "fox", "jumps", "over", "the", "lazy"];
      var firstWord = spareWords;
      var lastWord = spareWords;
      saying;
      saying;
    </script>

I can't understand what there after?

Stone Preston
Stone Preston
42,016 Points

can you post a link to the challenge itself

3 Answers

Hi Douglas,

This task wants you to remove the word "The" from the beginning of the spareWords array and also assign that word to the firstWord variable.

The shift() method will remove the first element from an array and it will also return that element. Which means you can then assign that return value to a variable.

var firstWord = spareWords.shift();

Thanks, that's exactly what i needed. Sometimes the wording in the challenges is weird and i can't understand it(i'm sure you will hear a lot from me).

Stone, here is the link to the Challenge if you still want it:

http://teamtreehouse.com/library/websites/javascript-foundations/arrays/methods-part-1-elements.

I already have the answer, thanks.