Manipulate Arrays With pop() help me to get rid of of this

Tell us what’s happening:

Your code so far


// Example
var ourArray = [1,2,3];
var removedFromOurArray = ourArray.pop(); 
// removedFromOurArray now equals 3, and ourArray now equals [1,2]

// Setup
var myArray = [["John", 23], ["cat", 2]];

// Only change code below this line.
var poppedOff = myArray.pop();
console.log(myArray);
var removedFromMyArray =["cat", 2];


Your browser information:

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

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

You’ve popped an element off the array, but you’ve created a new variable (poppedOff) that contains the value, not used removedFromArray. The test is checking that removedFromArray uses pop to produce the popped off value, it doesn’t know anything about the new variable you created