Tell us what’s happening:
building a pyramid generator - 54
I am stumped on this one…Please help.
The instructions are to have a function called addTwoNumbers which have two arguments of 5 and 10. Then return the sum of the two arguments. Then declare a sum variable and assign it the value of calling your addTwoNumbers function with 5 and 10 as the arguments. Log sum variable to the console. Here is my code
``
let sum = addTwoNumbers;
function addTwoNumbers(5, 10) {
return sum;
}
console.log(sum);
### Your code so far
```javascript
const character = "#";
const count = 8;
const rows = [];
function padRow(name) {
return name;
// User Editable Region
}
let sum = addTwoNumbers;
function addTwoNumbers(5, 10) {
return sum;
}
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 54