Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

I cant work out where I’m going wrong with this one. Can anyone help me see where I’m going wrong please?

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(value1, value2){
  return value1 + value2;
}
let value1 =5; let value2 = 10;
const sum= (value1 + value2) ;
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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

The instructions do not ask you to create the value1 and value2 variables and assign values to them.

Look at this example again for calling your function:

sayName("Camper", "Cat");

Arguments are separated by a comma. Your function already has the addition part written.

“Camper” and “Cat” are passed to the function and get stored in the firstName and lastName parameters of the function:

function sayName(firstName, lastName) {
  return firstName + lastName;
}