Learn Introductory JavaScript by Building a Pyramid Generator - Step 38

Tell us what’s happening:

Whats wrong with this code please, cant seem to find any more errors

Your code so far

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


// User Editable Region

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

// 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/130.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 38

Hi @booleanmethod9

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

You replaced the console log with a variable declaration.

Happy coding

In this case, it is to make “rows” receive the comparison elements in each loop. I left a console to better demonstrate this method.

for (let i = 0; i < count; i = i + 1) {
rows.push(i);
console.log(rows)
}

Replace your log statement with a statement to push i to your rows array:
rows.push(i);