Basic JavaScript - Manipulate Arrays With shift Method

Tell us what’s happening:

I’m having trouble here. I tried implementing the shift method accordingly, but it seems to be wrong. I wonder where the mistake is.

Your code so far

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

// Only change code below this line
const removeFromMyArray = myArray.shift();

Your browser information:

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

Challenge Information:

Basic JavaScript - Manipulate Arrays With shift Method

There’s small difference between name of variable and the expected name. It should be removedFromMyArray.

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