Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

i cant move forward although my code is correct. NEED HELP

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Hi. You don’t need to leave that first line in. You have converted it into a variable. Remove that and it should pass.

1 Like

this was helpful in figuring it out :slightly_smiling_face:

1 Like