ES6: Create Strings using Template LiteralsPassed

Tell us what’s happening:
im struggling here,this is the only error message(Template strings and expression interpolation should be used.) i’m getting,but everything else is correct

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 = ['<li class="text-warning">no-var</li>',
'<li class="text-warning">var-on-top</li>',
'<li class="text-warning">linebreak</li>'];
for (let i = 0;i < arr.length;i++);
console.log(failureItems);
// Only change code above this line

return failureItems;
}

const failuresList = makeList(result.failure);

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36.

Challenge: Create Strings using Template Literals

Link to the challenge:

You’ve just created a copy of desired output and returning it.
You’ve to generate the output programmatically.

You’ve included this for loop, just to pass the tests…
Tests demand you to use the String Literals and interpolation about which you’ll learn in the description window of the challenge

Thanks Mukesh,finally got it