Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

Tell us what’s happening:

I cannot find the error with this part of the code

Your code so far

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

// User Editable Region

let pushed = rows.push("freeCodeCamp");
consolelog.(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/127.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 28

The syntax is wrong for console.log(). Full stop after console and remove full stop after log. Also needs a semi colon after the console.log line.

1 Like

compare with this code you wrote

That fixed it, thank you!

1 Like