I think it is not responding to the answer

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

So I was not sure how to code the answer and so I turned to the Hints category. Strangely enough, both answers do not respond or are not being accepted. Would anyone know how to code the solution?

  **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 = arr.map(item => `<li class="text-warning>${item}</li>`);
}
// Only change code above this line

return failureItems;
}

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

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

Challenge: Create Strings using Template Literals

Link to the challenge:

Hi @HRA17 !

Your code is currently returning this for me.
Screen Shot 2022-05-11 at 10.33.22 AM

Once you fix that syntax error, then you should be able to run the code.

  1. You closed the makeList function before the return.

  2. You didn’t close the class name string.

Thanks much appreciated!

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