Learn Introductory JavaScript by Building a Pyramid Generator - Step 44

Tell us what’s happening:

how to complete this question please help me solve this question

Your code so far

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


// User Editable Region



for (let i = 0; i < count; i = i + 1) {
  let row = '';

for(let j = 0; j < count - i -1; j= j + 1){
  row += " ";
}

for(let j = 0; j < 2 * i; j = j + 1){
  row += character
}

rows.push(row)
}



// User Editable Region


let result = ""

for (const row of rows) {
  result = result + "\n" + row;
}

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 44

you have too many loops. My suggestion is to use the reset button so that you restore the starting code, then you need to change the rows.push(i) line

Instead of pushing i to the array, push the value of your character variable.

So you need to change the argument of push()