Basic JavaScript - Manipulate Arrays With unshift Method

in thiss problem i want to shift the last element of the array
and unshift the a element into the front of the array

Your code so far
even though the code is correct the freeCodeCamp is not accepting it as a answer

// 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/115.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Manipulate Arrays With unshift Method

Link to the challenge:

You need to capitalize ‘paul’

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

// Only change code below this line
myArray.unshift([“Paul”,35]);

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