Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

Can’ get past this step. It says to assign rows.push(“freeCodeCamp”) to pushed variable. Tried so many times

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Don’t create a new line of code.
Just change the original line of code so that the result of calling rows.push is assigned to the variable.

1 Like

you should have changed the existing line, as you should have a total of one rows.push
You can remove this line as you have rewritten it.

you should assign code, not a string, remove the outer quotes

1 Like