Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

Tell us what’s happening:

Can anyone help me out with this? I think it’s good but not working.

Your code so far

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


// User Editable Region

for (let iterator; condition; iteration;) {}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

There is no semicolon after the word iteration.
Also the words in the for loop need to be strings to pass the check.

Also remove let.