Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

I have no idea what is wrong with my code. Please explain it to me.

Your code so far

let character = 'Hello';
let count = 8;

// User Editable Region

let rows = ["Naomi", "Quincy", "CamperChan"];
rows.push("freeCodeCamp");
let pushed = rows.push("freeCodeCamp");
console.log(rows.push("freeCodeCamp"));
let popped = rows.pop();
console.log(rows);

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

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

You have push three times, it should still be only one, you need to assign the existing expression to a variable, not write a new expression with push

1 Like

Thank you! It worked :slight_smile: