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 + row + "\n";
}
console.log(result);
Hi there!
You need to create a topic to the challenge step using Help
button. That’s appear below the challenge editor, when you try to submit the wrong code more than three times. That way your topic will link to the challenge step and you also can add the challenge code to the topic.