--- title: Create Strings Using Template Literals --- Instead of using string concatenation, ES6 offers template literals to create strings. In this challenge, you have to use template literals to create an array of text warnings.  Remember to use **`Read-Search-Ask`** if you get stuck. Try to pair program and write your own code. ### Problem Explanation: It's required to use template literals to return a list as every element in the array as the element will be wrapped in a `
` tag. ## Hint: 1 * Use `map()` function to apply the template literals on all of the `arr` elements > _try to solve the problem now_ ## Hint: 2 * Inside the `map()` use an arrow function which has `element` as a parameter and returns `` that has the text-warning class and containing the `element` inside it > _try to solve the problem now_ ## Spoiler Alert!  **Solution ahead!** ```const resultDisplayArray = arr.map(item => `