diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 1d29728124..85b2942532 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -4634,6 +4634,7 @@
"assert(phoneticLookup(\"echo\") === 'Easy', 'message: phoneticLookup(\"echo\")
should equal \"Easy\"
');",
"assert(phoneticLookup(\"foxtrot\") === 'Frank', 'message: phoneticLookup(\"foxtrot\")
should equal \"Frank\"
');",
"assert(typeof phoneticLookup(\"\") === 'undefined', 'message: phoneticLookup(\"\")
should equal undefined
');",
+ "assert(code.match(/return\\sresult;/), 'message: You should not modify the return
statement');",
"assert(!/case|switch|if/g.test(code), 'message: You should not use case
, switch
, or if
statements'); "
],
"type": "waypoint",