Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Tell us what’s happening:

for (let i = 1; i < count; i++ ) {

}

pls where is error

Your code so far

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


// User Editable Region

for (let i = 1; i < count; i++ ) {
  
}

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Looks like you changed some of the original code rather than just changing the “iteration.” Please “Reset” this step and try again.