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

Matthew Paley
Matthew Paley
1,298 Points

St4 Arrays Q1: I believe question is to add/remove to saying array, not spareWords array? My error not using .shift();

saying.unshift(firstWord);
    saying.shift();
Matthew Paley
Matthew Paley
1,298 Points

I got it. The question is so very confusing. Can it say: remove the first item of the array spareWords placing as the first item in saying array? This worked:

var firstWord = spareWords[0];
var lastWord = spareWords;
saying.unshift(firstWord);
spareWords.shift();

1 Answer

Iago Wandalsen Prates
Iago Wandalsen Prates
21,699 Points

What you want you to do is use a method on spareWords to set firstWord to be the first word. Shift doenst take any argument, the answer would be

var firstWord = spareWords.shift()

The command for the first question dont even mention saying

Matthew Paley
Matthew Paley
1,298 Points

Thanks IWP! Was totally not reading the question correctly.