Learn Introductory JavaScript by Building a Pyramid Generator - Step 38

Tell us what’s happening:

You should call .push() on your rows array.
3. You should push i to your rows array.
4. Your .push() should happen in your for loop.

Your code so far

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


// User Editable Region

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

}

// 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/132.0.0.0 Safari/537.36 Edg/132.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 38

Welcome to the forum @rohitbhai20032

Replace your log statement with a statement to push i to your rows array.

You need to place the .push() method in the body of the function.

Happy coding