diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index 0e824133ca8..52a43a13968 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -2690,7 +2690,7 @@
"assert(testEqual(10) === \"Not Equal\", 'message: testEqual(10) should return \"Not Equal\"');",
"assert(testEqual(12) === \"Equal\", 'message: testEqual(12) should return \"Equal\"');",
"assert(testEqual(\"12\") === \"Equal\", 'message: testEqual(\"12\") should return \"Equal\"');",
- "assert(code.match(/val\\s*==[\\s'\"\\d]+/g).length > 0, 'message: You should use the == operator');"
+ "assert(code.match(/==/g) && !code.match(/===/g), 'message: You should use the == operator');"
],
"type": "waypoint",
"challengeType": 1,