Create Strings using Template Literals - Bug Still not solved

Tell us what’s happening:
Hello all,

I know this is a known bug. It has been for a while. And it bugs me (pun absolutely intended, perdoname freeCodeCamp por mi humor loco) that this is the only challenge that I can’t get ticked off in the ES6 section :frowning: Is there any way of pointing this out to the dev team with bright neon lights and an infinite firefighters’ siren ?

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(val => `<li class="text-warning">${val}</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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

The issue already has a been raised on Github. Just waiting for a volunteer to fix it. Everything which gets done here is based on a volunteer to do it.

1 Like

Thank you Randell,

I know everything here is volunteer work, and I really appreciate it :slight_smile: ! I was just wondering if there was any way of pointing this out anywhere. Seeing as it’s already been done there’s no need for more pointless ranting on my part :smiley: !