diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index e1fd9b08eb..ee865796a3 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -993,7 +993,7 @@
"title": "Sift through Text with Regular Expressions",
"difficulty":"9.984",
"description":[
- "Regular expressions
are way to find certain words or patterns inside of strings
.",
+ "Regular expressions
are used to find certain words or patterns inside of strings
.",
"For example, if we wanted to find the number of times the word the
occurred in the string The dog chased the cat
, we could use the following regular expression
: \/the+\/gi
",
"Let's break this down a bit:",
"the
is the pattern we want to match.",