Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

Tell us what’s happening:

I can’t understand what exactly is required of me?

Your code so far

for (iterator; condition; iteration) {
}

const character = "#";
const count = 8;
const rows = [];

// User Editable Region


for (iterator; condition; iteration) {
 }


figured it out







// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

1 Like

Hey, you need quotation marks, keep in mind this is an example and strings dont go into for loops.

The way these challenges work, anything that is highlighted is highlighted for a reason. The words they asked you to add are highlighted. But they also contain punctuation (in this case double quotes) so you should make sure you use the words exactly as given with their punctuation.