Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

i dont know what to do becuase it is displaying the correct number (15) but it saying it is the wrong code (

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(sum){
  return sum
}
let sum = 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 + "\n" + row;
}

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Reread the instructions carefully. Your code is not according to the challenge instructions.

This function should take two arguments

Your function takes 1 argument

return the sum of those two arguments.

Your function returns the 1 argument unchanged.

thank you for helping

1 Like

and also thank you for helping

2 Likes