Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

Can anyone help me with step 55? I got the function addTwo Numbers, and two-parameters, had variable sum, and console statement. I even had show in my console on the right side of the “15” but still can’t pass the step.

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(num1, num2){
const sum = num1 + num2;
console.log(sum);
}

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/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

you need a function that returns something instead of logging it to the console

and you need to create the sum variable outside the function