Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

Hello, im stuck in 28 challenge in javascript datasructures and algthoritms ,
rows.push(“freeCodeCamp”);
let pushed = rows.push(“freeCodeCamp”);
console.log(pushed);
console.log(rows);

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); 
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/130.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

you should not have push twice

in declaring new var or in rows

Assign your existing rows.push()

This means to modify what’s already there, and not to add a new line