Why is this retturning a empty array?

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

const result = {
success: ["max-length", "no-amd", "prefer-arrow-functions"],
failure: ["no-var", "var-on-top", "linebreak"],
skipped: ["no-extra-semi", "no-dup-keys"]
};
function makeList(arr) {
// Only change code below this line
const failureItems = []
for (let i = 0; i == arr.lenght; i++) {
failureItems.push(`<li class="text-warning">${arr[i]}</li>`)
}
// Only change code above this line
return failureItems;
}

const failuresList = makeList(result.failure);
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:88.0) Gecko/20100101 Firefox/88.0.

Challenge: Create Strings using Template Literals

Link to the challenge:

What’s going on?

You have a typo here.

the code is supposed to generate a array (if i understand right). However, is returning a empty array. I’m pretty sure that i’m uderstanding something wrong here.

You have a typo here.

I always make this mistake. thx, fixed.

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