Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

I am having trouble with this step. The output should be 15, but my code returns 510 and I don’t know how to fix it. Any help would be very appreciated.

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(number1, number2) {
return number1 + number2;
}
const sum = addTwoNumbers("5", "10");
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 + row + "\n";
}

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

You are passing strings to the function, not numbers.

So do I put quotes around number1 and number2?

no, if you make them strings they will be concatenated, you don’t want any strings here

oh I finally got it, thanks for the help guys

1 Like