Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Tell us what’s happening:

I don’t know why the console throws me next error

SyntaxError: unknown: Unexpected token (29:20)

27 | }
28 |

29 | console.log(result);
|

Points out that the semicolon on line 29 is the error. Someone knows why??

Your code so far

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

function padRow(name) {

// User Editable Region

return name;

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

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 + "\n" + row;
}

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 55

Hi there!

You have missing the closing brace } of the padRow function body.

1 Like

Thaks a lot. It works :+1: :+1:

1 Like