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