Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

Tell us what’s happening:

It still says I should concatenate rows to the variable results not understanding

Your code so far

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

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

let result = ""


// User Editable Region

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

// User Editable Region


console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

To concatenate, you would need to sum the variable result with it’self and the other variable rows. You don’t need double quotations on any of the variables when doing concatenation since it’s not a string datatype.

Example:
for (const var2 of var2) {
var1 = var1 + var2;
};

2 Likes