Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

i don’t know what to do here , Please I really need help

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region


function addTwoNumbers(5,10) {
  return (5+10) ;
  }
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/136.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Look at this other function you’ve written:

function padRow(name) {
  return name;
}

Do you see how the parameter “name” is used inside the function?

So if I call the function with an argument:

console.log(padRow("Jimmy"))

It will print “Jimmy” to the console.

What you’ve done here is hardcoding:

return (5+10) ;

It will return 15 no matter what arguments you call the function with.

You need to use the parameter variables instead so that your arguments will be passed into the function.