Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Tell us what’s happening:

Help me with this code. it says the code does not pass,not sure what to do.

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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

append a new line after the result and row values.

is your new line character after both result and row?

Hi and welcome to the forum!
You are told to append a new line after the result and row values. You’ve added the new line between them.
Good luck!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.