Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

Im unsure if it wants me to create my own variable or use the data already given to complete this step.

Your code so far

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

// User Editable Region

rows.push("freeCodeCamp");
let pushed = 'freeCodeCamp';
rows.push = ()
console.log = 'freeCodeCamp';

// 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

Hi there!
The instructions: But what does .push() return? Assign your existing rows.push() to a new pushed variable, and log it.

The instructions is asking you to declare a variable pushed and assigning it that existing value pushing freeCodeCamp to rows variable. Reset the challenge step and try again.

The above first line is assigning a string freeCodeCamp to variable pushed.
Second line is incorrect assignment.
Third is incorrect log to the console.
Example log:

console.log(logSomthing);
1 Like

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