diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json
index 0cd7cd2484..b2a5e419fa 100644
--- a/challenges/01-front-end-development-certification/intermediate-bonfires.json
+++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json
@@ -227,7 +227,8 @@
"assert.deepEqual(myReplace(\"He is Sleeping on the couch\", \"Sleeping\", \"sitting\"), \"He is Sitting on the couch\", 'message: myReplace(\"He is Sleeping on the couch\", \"Sleeping\", \"sitting\")
should return \"He is Sitting on the couch\".');",
"assert.deepEqual(myReplace(\"This has a spellngi error\", \"spellngi\", \"spelling\"), \"This has a spelling error\", 'message: myReplace(\"This has a spellngi error\", \"spellngi\", \"spelling\")
should return \"This has a spelling error\".');",
"assert.deepEqual(myReplace(\"His name is Tom\", \"Tom\", \"john\"), \"His name is John\", 'message: myReplace(\"His name is Tom\", \"Tom\", \"john\")
should return \"His name is John\".');",
- "assert.deepEqual(myReplace(\"Let us get back to more Coding\", \"Coding\", \"algorithms\"), \"Let us get back to more algorithms\", 'message: myReplace(\"Let us get back to more Coding\", \"Coding\", \"algorithms\")
should return \"Let us get back to more algorithms\".');"
+ "assert.deepEqual(myReplace(\"Let us get back to more Coding\", \"Coding\", \"algorithms\"), \"Let us get back to more Algorithms\", 'message: myReplace(\"Let us get back to more Coding\", \"Coding\", \"algorithms\")
should return \"Let us get back to more Algorithms\".');"
+
],
"description": [
"Perform a search and replace on the sentence using the arguments provided and return the new sentence.",