Learn Introductory JavaScript by Building a Pyramid Generator - Step 66

Tell us what’s happening:

I think I did it right, the link to the function still shows that it’s wrong, I can’t figure out what’s wrong. const character = “#”;
const count = 8;
const rows = ;

function padRow(rowNumber, rowCount) {
return character.repeat(rowNumber);
}

for (let i = 0; i < count; i = i + 1) {
rows.push(padRow(i + 1, с…));
}

let result = “”

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

console.log(result);

Your code so far

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

function padRow(rowNumber, rowCount) {
  return character.repeat(rowNumber);
}



// User Editable Region

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

// User Editable Region


let result = ""

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

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 66

at this time, do not add any arguments

Sorry, I didn’t understand what arguments you’re talking about, I tried it anyway, but it didn’t work rows.push(padRow(i+1)); / rows.push(padRow);

without arguments to padRow, but you still need to call it

sorry i can’t understand i tried all 3 options and all are wrong

thank you, I figured it out, I understood my mistake and what needed to be done