Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

Cannot continue, Keeps saying code does not pass…

Your code so far

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

function padRow(name) {
  return name;
}

// User Editable Region

function addTwoNumbers(num1, num2) {
  let add = num1 + num2;
  return add;
}

let sum = addTwoNumbers();
console.log(addTwoNumbers(5, 10));

// 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; rv:131.0) Gecko/20100101 Firefox/131.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Hi, have a look at the 2nd and last paragraphs of the instruction again.

You’re nearly there, a couple of small tweaks and it’ll pass.

Your sum variable, needs to log 5 and 10 as arguments. You have put that in the console log.
You then simply log sum to the console as instructed in the last para.

Your function itself is fine.

2 Likes