Create Strings using Template Literals, second test failing

The second test ( resultDisplayArray is the desired output.) for this activity keeps failing. I’ve tried reading through older threads, but I still don’t understand why it is failing and was hoping for a decent explanation (without a lot of jargon), so I can understand better how to fix it.

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";

  // change code below this line
  const resultDisplayArray = arr.map(message => { return `<li class="text-warning">!{message}</li>`});
  // change code above this line

  return resultDisplayArray;
}
/**
 * makeList(result.failure) should return:
 * [ `<li class="text-warning">no-var</li>`,
 *   `<li class="text-warning">var-on-top</li>`, 
 *   `<li class="text-warning">linebreak</li>` ]
 **/
const resultDisplayArray = makeList(result.failure);

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/create-strings-using-template-literals/

This is how you use the variable ${variable}, look again at how you wrote it.

Your variable in your template string is !{message} when it should be ${mesage}

And this is why I shouldn’t try to do two things at once. Thank you both.