diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index e4442597ab..872af43c14 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -1093,12 +1093,12 @@
"You can invert any match by using the uppercase version of the selector \\s
versus \\S
for example."
],
"tests":[
- "assert(test === 36, 'Your RegEx should have found seven spaces in the testString
.');",
- "assert(editor.getValue().match(/\\/\\\\S\\/gi/gi), 'You should be using the following expression /\\+S/gi
to find the spaces in the testString
.');"
+ "assert(test === 49, 'Your RegEx should have found forty nine non-space characters in the testString
.');",
+ "assert(editor.getValue().match(/\\/\\\\S\\/gi/gi), 'You should be using the following expression /\\S/gi
to find non-space characters in the testString
.');"
],
"challengeSeed":[
"var test = (function(){",
- " var testString = \"How many spaces are there in this sentence?\";",
+ " var testString = \"How many non-space characters are there in this sentence?\";",
"",
" // Only change code below this line.",
"",