diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json b/seed/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
index f3832bcccc..1532d4c25b 100644
--- a/seed/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
+++ b/seed/challenges/02-javascript-algorithms-and-data-structures/functional-programming.json
@@ -1495,7 +1495,7 @@
"assert(globalTitle === \"Winter Is Coming\", 'message: The globalTitle
variable should not change.');",
"assert(!code.match(/\\.replace/g), 'message: Your code should not use the replace
method for this challenge.');",
"assert(urlSlug(\"Winter Is Coming\") === \"winter-is-coming\", 'message: urlSlug(\"Winter Is Coming\")
should return \"winter-is-coming\"
.');",
- "assert(urlSlug(\" Winter Is Coming\") === \"winter-is-coming\", 'message: urlSlug(\" Winter Is Coming\")
should return \"winter-is-coming\"
.');",
+ "assert(urlSlug(\" Winter Is Coming\") === \"winter-is-coming\", 'message: urlSlug(\" Winter Is Coming\")
should return \"winter-is-coming\"
.');",
"assert(urlSlug(\"A Mind Needs Books Like A Sword Needs A Whetstone\") === \"a-mind-needs-books-like-a-sword-needs-a-whetstone\", 'message: urlSlug(\"A Mind Needs Books Like A Sword Needs A Whetstone\")
should return \"a-mind-needs-books-like-a-sword-needs-a-whetstone\"
.');",
"assert(urlSlug(\"Hold The Door\") === \"hold-the-door\", 'message: urlSlug(\"Hold The Door\")
should return \"hold-the-door\"
.');"
],