Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

Tell us what’s happening:

I don’t understand what the question is. What am I supposed to do because I write a new variable the way I am asked I am just repeating the same thing over.

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/125.0.0.0 Safari/537.36 Edg/125.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

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

You need to use the push that was already there instead of creating a second one

2 Likes

I have the same problem as yours, my code is similar, if somebody have a solution please explain :slight_smile:
Edit: code removed by moderator - by doing this you assign a new value to pushed value.
you should use rows.push(); as your value, this way will not change the value :slight_smile:

hey @alecsjan24

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

ok, I will keep in mind for next time

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.