diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
index 40fc0aac51..c74cfece16 100755
--- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
+++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json
@@ -256,8 +256,8 @@
"var a = 5;\nvar b = 10;\nvar c = \"I am a\";\na = a + 1;\nb = b + 5;\nc = c + \" String!\";"
],
"tests": [
- "assert(typeof a === 'number' && a === 6, 'message: a
should be defined and have a value of 6
');",
- "assert(typeof b === 'number' && b === 15, 'message: b
should be defined and have a value of 15
');",
+ "assert(typeof a === 'number' && a === 6, 'message: a
should be defined and evaluated to have the value of 6
');",
+ "assert(typeof b === 'number' && b === 15, 'message: b
should be defined and evaluated to have the value of 15
');",
"assert(!/undefined/.test(c) && c === \"I am a String!\", 'message: c
should not contain undefined
and should have a value of \"I am a String!\"');",
"assert(/a = a \\+ 1;/.test(code) && /b = b \\+ 5;/.test(code) && /c = c \\+ \" String!\";/.test(code), 'message: Do not change code below the line');"
],