fix(curriculum): typo in instruction for step 47 of music player challenge (#53253)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Edwin Hung
2024-01-17 22:27:38 -08:00
committed by GitHub
parent 8b89acaef0
commit 58c401239c
@@ -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--