Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

Tell us what’s happening:

Ive been searching and i cant find a hit to it.
This is my code. I dont whats wrong with it. It keeps asking to rows.push(“freeCodeCamp”) to the pushed variable. Can somebody explain it for me easily. Thank you so much in advance.

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

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 27

Edit the existing line instead of adding a new line

1 Like

thank you so much i have solved it.

1 Like