Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

Tell us what’s happening:

I did literally everything the exercise asked me. I’m about to lose my mind and give up. What, exactly, step-by-step, am I supposed to do?!!!

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);
let popped = rows.pop();

// User Editable Region

console.log(popped);
console.log(rows);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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

Never mind. I figured it out.

3 Likes