Learn Introductory JavaScript by Building a Pyramid Generator - Step 82

Tell us what’s happening:

I keep getting “your statement should check if 5 is less than 10”. I don’t even understand what that means at this point. I don’t know if this is checking if 5 is less than 10. Please help!

Your code so far

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

function padRow(rowNumber, rowCount) {
  return " ".repeat(rowCount - rowNumber) + character.repeat(2 * rowNumber - 1) + " ".repeat(rowCount - rowNumber);
}

// TODO: use a different type of loop
/*for (let i = 1; i <= count; i++) {
  rows.push(padRow(i, count));
}*/


// User Editable Region

if ("") {
  console.log("Condition is true");
} else if ("5 is less than 10") {
  console.log("5 is less than 10");
  // code to run if 5 is less than 10 is true
}

// User Editable Region


let result = ""

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

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) 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 82

They are asking you to use a less than operator to compare these two numbers. For eg:
6 > 5 used a greater than operator to compare 6 to 5. In this case this statement would evaluate to true. So it can be used inside an if statement condition.