Learn Introductory JavaScript by Building a Pyramid Generator - Step 77

Tell us what’s happening:

I’ve tried using the for statement as my multiline comment, but it is still not working.

Your code so far

// User Editable Region

for (let i = 1; i <= count; i++) {
rows.push(padRow(i, count));
}
/*
for (let i = 1; i <= count; i++) {
rows.push(padRow(i, count));
}
*/

// User Editable Region


### Your browser information:

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0</code>

### Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 77
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/learn-introductory-javascript-by-building-a-pyramid-generator/step-77

Hi,
make sure you turn the existing for loop into a comment. Don’t create a new one.
Good luck!

Now, i understand. Thank you.