Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

Can somebody explain me what s wrong with my code on sept 55?
function addTwoNumbers (a, b) {
const sum = a + b;
return sum;
}
console.log(addTwoNumbers(5,10));

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers (a, b) {
  const sum = a + b;
  return sum;
}
console.log(addTwoNumbers(5,10));

// User Editable Region


const call = padRow("CamperChan");
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 + row + "\n";
}

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

you are asked to store the result of calling the function in a variable called sum, here you are only printing it to the console