From 0d123e0ba99df8fc175cbec4f05c3ca995c509a9 Mon Sep 17 00:00:00 2001 From: a2937 Date: Tue, 2 Jan 2024 21:24:50 -0500 Subject: [PATCH] fix(curriculum): allow spaces before the colon in step 9 of the music player project (#52883) --- .../656071d679089ebd9d5035a0.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/656071d679089ebd9d5035a0.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/656071d679089ebd9d5035a0.md index b6f813ead28beb..0af38e0ec19339 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/656071d679089ebd9d5035a0.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/656071d679089ebd9d5035a0.md @@ -26,7 +26,7 @@ Inside the `userData` object create a `songs` property. For the value, spread `a Your `userData` object should have a `songs` key set to `[...allSongs]`. ```js -assert.match(code, /songs:\s*\[\.\.\.allSongs\],?/); +assert.match(code, /songs\s*:\s*\[\.\.\.allSongs\],?/); ``` # --seed--