Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Tell us what’s happening:

my loop is not working, here is my code : for (let i = i + 1; i <= count; i++)

Your code so far

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


// User Editable Region

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

}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

you need to use the syntax explained in the step