Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Tell us what’s happening:

const character = “#”;
const count = 8;
const rows = ;

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

let result = “”

for (const row of rows) {
result = result + “\n” + row;

}

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

// User Editable Region


console.log(result);

Your browser information:

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

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!

You have added the newline character between the variables. It’s should be in the end.

am also stuck at this stage. I don’t know what kind of code the system requires yet I’ve done the correct concatenation

hi @jokore please create your own thread to ask for help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.