Can someone help me please::

So I understand where I am going wrong here can someone explain please:
Describe your issue in detail here.

Your code so far

// Setup
const myArray = [["John", 23], ["dog", 3]];
myArray.shift();

// Only change code below this line
myArray.unshift(["paul", 35]);
console.log(myArray)

Your browser information:

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

Challenge: Manipulate Arrays With unshift()

Link to the challenge:

Hi

Your code has “paul” but it should be “Paul”.

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