diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65420dcfc60580678dad7a92.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65420dcfc60580678dad7a92.md index ce44129afb1..356e65fae15 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65420dcfc60580678dad7a92.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65420dcfc60580678dad7a92.md @@ -9,7 +9,7 @@ dashedName: step-14 Inside the `map()`, add a `return` statement with backticks where you will interpolate all the elements responsible to displaying the song details. -Inside the backticks, create an `li` tag with the id `song-${song.id}` as the first attribute. Also, add the class `playlist-song` as the second attribute. +Inside the backticks, create an `li` element with an `id` attribute of `song-${song.id}` and a `class` attribute of `playlist-song`. # --hints-- @@ -25,16 +25,16 @@ You should create an `li` tag inside the backticks. assert.match(code, /return\s*`\s*