Manipulate Arrays With unshift()-what's wrong in this code?

Tell us what’s happening:

Your code so far


// Example
var ourArray = ["Stimpson", "J", "cat"];
ourArray.shift(); // ourArray now equals ["J", "cat"]
ourArray.unshift("Happy"); 
// ourArray now equals ["Happy", "J", "cat"]

// Setup
var myArray = [ ["John", 23], ["dog", 3]];

//myArray.shift();
//myArray.unshift(["paul", 35]);

// Only change code below this line.
myArray.unshift(["paul", 35]);




Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-unshift/

When I look at the link to the exercise… empty ‘new’

it does not have the myArray.shift(); commented out
secondly… they ask you to add “Paul” and not “paul”

Got it, thanks DarrenfJ

1 Like

:smiley:

Sometimes typos are a killer… and since they look so similar to what you expect to see they are extra hard to catch…