diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index dbc5eed779..3465c9dcb1 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -1007,7 +1007,7 @@
"g
means that we want to search the entire string for this pattern.",
"i
means that we want to ignore the case (uppercase or lowercase) when searching for the pattern.",
"Regular expressions
are usually surrounded by /
symbols.",
- "Let's try selecting all the occurrences of the word and
in the string George Boole and Alan Turing went to the shop and got some milk
. We can do this by replacing the +
part of our regular expression with the word and
."
+ "Let's try selecting all the occurrences of the word and
in the string George Boole and Alan Turing went to the shop and got some milk
. We can do this by replacing the .
part of our regular expression with the word and
."
],
"tests":[
"assert(test==2, 'Your regular expression
should find two occurrences of the word and
');",