Learn Introductory JavaScript by Building a Pyramid Generator - Step 38s

Tell us what’s happening:

Can anyone help me out with this question? I can’t get the question. Please guide me what it trying to tell?

Your code so far

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


// User Editable Region

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

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 38

your rows array is empty now, you are supposed to push the i into array using array methods you learned in previous lessons, remove console.log