Learn Introductory JavaScript by Building a Pyramid Generator - Step 58

Tell us what’s happening:

I don’t know what wrong with it, can someone tell me please

Your code so far

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


// User Editable Region

function padRow(character, name) {
  const test = "Testing";
  return character + name;
}
console.log(test);

const call = padRow("CamperChan");

// User Editable Region

console.log(call);


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

let result = ""

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

console.log(result);

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/17.5 Safari/605.1.15

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 58

Welcome to the forum @samareq

Remove that console.log to pass the tests and continue.

Now that you have tested the code, you can remove the console.log()

Happy coding