Basic JavaScript - Manipulate Arrays With shift()

Tell us what’s happening:
Even though I write the same thing as solution I get an error

Your code so far

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

// Only change code below this line
const removedFromOurArray = myArray.shift();
console.log(removedFromOurArray)


Your browser information:

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

Challenge: Basic JavaScript - Manipulate Arrays With shift()

Link to the challenge:

You need to recheck the name of your variable.

And pay close attention to the instructions:

… a new variable, removedFromMyArray .

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.