// Setup
var myArray = [["John", 23], ["dog", 3]];
myArray.shift();
myArray.unshift(["paul", 35]);
console.log(myArray);
// Only change code below this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36.
// Setup
var myArray = [["John", 23], ["dog", 3]];
myArray.shift();
//Move this code
myArray.unshift(["paul", 35]);
console.log(myArray);
// Only change code below this line
//correct code goes here