diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json
index 72108c52b80..ad030cc4501 100644
--- a/challenges/basic-javascript.json
+++ b/challenges/basic-javascript.json
@@ -1183,7 +1183,7 @@
"i means that we want to ignore the case (uppercase or lowercase) when searching for the pattern.",
"Regular expressions are written by surrounding the pattern with / symbols.",
"Let's try selecting all the occurrences of the word and in the string Ada Lovelace and Charles Babbage designed the first computer and the software that would have run on it.",
- "We can do this by replacing the . part of our regular expression with the current regular expression with the word and."
+ "We can do this by replacing the . part of our regular expression with the word and."
],
"tests": [
"assert(test==2, 'message: Your regular expression should find two occurrences of the word and.');",