Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

Tell us what’s happening:

whenever I write for loop it says first element of for loop should be a iterator string I am not getting what exactly it is saying to do

Your code so far

for(let i=0 ; i<5; i++){
}


// User Editable Region



// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 33

Hi there,

As the instruction said:

For now, construct a for loop that includes the terms "iterator", "condition", and "iteration" for the three components. Keep the loop body, the section within the curly braces {}, empty.

So just for now, replace your let i=0 with "iterator", … and so on.