ES6 - Create Strings using Template Literals

Tell us what’s happening:
Describe your issue in detail here.
I do not know where i got it wrong, when i try submitting my test, the console displays “failureList should be equal to the specified output”, thereby preventing me from successfully submitting the test . I did console.log for the failureList and got the desired output, I do not know what else to do.
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 = [];
  let i = 0
  while (i < arr.length) {
   
    failureItems.push(`<li class="test-warning">${arr[i]}</li>`);
    i++;
  }
  // Only change code above this line

  return failureItems;
}

const failuresList = makeList(result.failure);
console.log(failuresList)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: ES6 - Create Strings using Template Literals

Link to the challenge:

class="test-warning"

I’d check the name of that class again.

1 Like

thanks so much, that was so easy :grinning:

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