Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

Tell us what’s happening:

for (const row + result of rows) {

}

this is my code so far

### Your code so far


```javascript
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 + result of 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/131.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 42

for (const row + result of rows) {

}

this is my code so far

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

ok so i understood the part where i had to + result to rows but i don’t understand the next step it is asking me to assign the result of concatenation back to result variable

you should do it inside the loop, do not change the loop variable and iterator