Help my code is not working

Tell us what’s happening:

Your code so far


const result = {
success: ["max-length", "no-amd", "prefer-arrow-functions"],
failure: ["no-var", "var-on-top", "linebreak"],
skipped: ["id-blacklist", "no-dup-keys"]
};
function makeList(arr) {
"use strict";

// Only change code below this line
const resultDisplayArray = [];for (let i = 0; i < result.length; i++) { resultDisplayArray.push(`<li class="text-warning"> ${result [i]}</li>`);
}
// Only change code above this line

return resultDisplayArray;
}

const resultDisplayArray = makeList(result.failure);

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-G9250) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/12.1 Chrome/79.0.3945.136 Mobile Safari/537.36.

Challenge: Create Strings using Template Literals

Link to the challenge:

hi @Walter2

the function parameter is (arr);
your for loop should looping the parameter.
and each loop should push the result failure value