diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index a871f43675..72108c52b8 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -1093,7 +1093,7 @@
"Here's the formula we'll use. Take a moment to read it and try to understand what this code is doing:",
"Math.floor(Math.random() * (max - min + 1)) + min
",
"Define two variables: myMin
and myMax, and set them both equal to numbers.",
- "Then create a function called myFunction
that returns a random number that's greater than or equal to myMin
, and is less than myMax
."
+ "Then create a function called myFunction
that returns a random number that's greater than or equal to myMin
, and is less than or equal to myMax
."
],
"tests": [
"assert(myFunction() >= myMin, 'message: The random number generated by myFunction
should be greater than or equal to your minimum number, myMin
.');",