Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

Tell us what’s happening:

I can’t find the way to assign the result of your concatenation back to the result variable

Your code so far


// User Editable Region

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

for (let i = 0; i < count; i = i + 1) {
  rows.push(i);
}

let result = ""
reslut = result + row;
for (const row of rows) {

}

console.log(result);

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0 (Edition std-2)

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

you need to do it inside the loop

1 Like