Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

i dont understand why this isnt working i tried literally everything what am i supposed do to assign rows.pushed

Your code so far

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

// User Editable Region

rows.push("freeCodeCamp");
let pushed;
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 OPR/112.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

how many push do you have in your code? it should be a total of one

Hello and welcome to the forum @crisjoyanjoseph !

This steps asks us to assign the existing rows.push() to a new variable of pushed

We can use our previous step of

as an example of how to do this, and the console.log to help us log it.

Wishing you good progress on your coding journey. :slightly_smiling_face: