Step 35
You should see the numbers zero through seven printed in your console, one per line. This will serve as the foundation for generating your pyramid.
Replace your log statement with a statement to push i to your rows array.
Your code so far
const character = "#";
const count = 8;
const rows = [];
// User Editable Region
for (let i = 0; i < count; i = i + 1) {
.push(rows)
}
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 35
Hello. Welcome to our forum.
This is not the correct way to use the push method. To correct your mistake,
The array name should come before the push method, that way, the browser will understand that you are pushing some elements in the specified array. If you leave it empty, the browser won’t have a reference array to push the i;
Secondly, you place what you want to push in the brackets, your i should go in there.