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!
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

Douglas Watts
5,464 PointsArray 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?
3 Answers

Jason Anello
Courses Plus Student 94,610 PointsHi 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();

Douglas Watts
5,464 PointsThanks, 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).

Douglas Watts
5,464 PointsStone, 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.
Stone Preston
42,016 PointsStone Preston
42,016 Pointscan you post a link to the challenge itself