JavaScript by Building a Pyramid Generator - Step 33 (Potential glitch?))

Tell us what’s happening:

I am trying to put a basic loop sequence and I followed the instructions word for word and its still not working. When I was approved to go to the next step it was unclear what changed to make what I was doing correct so I did it again but its wrong again

Your code so far

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


// User Editable Region

for(iterator; condition; iteration){
}


// 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/127.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

Hi and welcome to the forum :wave:

If you look at the hints, they have the words in quotes. The quotes are important in this case since it makes them strings, and not variables. It’s not really clear from the instructions, or the example, but the hints are more accurate and explicit.

The first component of your for loop should be the string “iterator”.