From 3cf229c1a163a29565e37cc5fd37b41ee8b40cf6 Mon Sep 17 00:00:00 2001 From: Arunkumar S <32316065+arunkumar0398@users.noreply.github.com> Date: Sun, 18 Feb 2024 02:04:03 +0530 Subject: [PATCH] fix(curriculum): update description on step 16 music player (#53773) --- .../654212b82fb5cf872f77148f.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/654212b82fb5cf872f77148f.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/654212b82fb5cf872f77148f.md index 90dbfa94f46..0415e8470b5 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/654212b82fb5cf872f77148f.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/654212b82fb5cf872f77148f.md @@ -7,7 +7,11 @@ dashedName: step-16 # --description-- -Inside the `button`, create two more `span` elements. The first span element should have class `playlist-song-artist` and interpolate `song.artist`. The second span element should have class `playlist-song-duration` and interpolate `song.duration`. +Inside the `button` element, create two more `span` elements. + +The first `span` element should have a `class` of `playlist-song-artist`. In between the `span` tags, add `${song.artist}`. + +The second `span` element should have a `class` of `playlist-song-duration`. In between the `span` tags, add `${song.duration}`. # --hints--