From 58c401239c9e2341e48c94ebac4935e91a124fd9 Mon Sep 17 00:00:00 2001 From: Edwin Hung <32249535+edwinhung@users.noreply.github.com> Date: Wed, 17 Jan 2024 22:27:38 -0800 Subject: [PATCH] fix(curriculum): typo in instruction for step 47 of music player challenge (#53253) Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../65547ee197840478a1b95f4b.md | 2 +- 1 file changed, 1 insertion(+), 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/65547ee197840478a1b95f4b.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65547ee197840478a1b95f4b.md index 83a9c2d5587..b4f3c8441a1 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65547ee197840478a1b95f4b.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65547ee197840478a1b95f4b.md @@ -9,7 +9,7 @@ dashedName: step-47 It's time to hook up the `playNextSong` function to an event listener. -Add a `click` event listener to the `nextButton` element the pass in `playNextSong` as the second argument of your event listener. This is the function the event listener will run. +Add a `click` event listener to the `nextButton` element, then pass in `playNextSong` as the second argument of your event listener. This is the function the event listener will run. # --hints--