Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

rows.push(“freeCodeCamp”);
let pushed;
let rows.push(“freeCodeCamp”)=“pushed”;
console.log(pushed);
Hello. Something is wrong with my code. Pleaes help me.

Your code so far

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

// User Editable Region

rows.push("freeCodeCamp");
let pushed;
let rows.push("freeCodeCamp")="pushed";
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/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

You do not need this.

Once you remove the above, assign this

to this

1 Like

Thanks, your advice has helped me manage the challenge.

You are very welcome. Keep doing the great work.

1 Like