Learn Introductory JavaScript by Building a Pyramid Generator - Step 25

Tell us what’s happening:

I really can’t get it to work, even with chat gpt i cant find a solution for this

Your code so far

let character = 'Hello';
let count = 8;
let rows = ["Naomi", "Quincy", "CamperChan"];

// User Editable Region

rows.push("freeCodeCamp");
let pushed =rows.push("freeCodeCamp")
console.log(pushed)


// User Editable Region

let popped = rows.pop();
console.log(popped);
console.log(rows);

Your browser information:

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 25

Assign your existing rows.push() to a new pushed variable, and log it.

It says to assign the existing one, you created a new one, you should have the push only once, so delete one of the two lines that use push and you should be fine

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