Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

It’s lost me on this question, it’s saying a function of addTwoNumbers should be created, i feel like i’ve done that. Also how do i declare a sum variable and assign it the value of the function if it doesn’t know to add these two (5,10)?

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

///
function addTwoNumbers(5,10){
  return sum;

}
const sum = 15;
console.log(sum) \\\

// 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 + "\n" + row;
}

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Welcome to the forum @graemec13

Look carefully at the example code given in the instructions.
Your function needs to include parameters.

The return statement then returns the two parameters.

The sum variable is not correct.
You need to assign it the new newly created function, passing two numbers as the function call.

Please remove the back slashes.

Happy coding