diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index cab00f6f2a..b253f42162 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -355,11 +355,14 @@
"description": [
"We can also divide one number by another.",
"JavaScript uses the /
symbol for division.",
+ "",
+ "Example
16 / 2 = 8", + "", "
0
so that answer
will equal 2
."
+ "Change the 0
so that quotient
will equal to 2
."
],
"tests": [
- "assert(answer === 2, 'message: Make the variable answer
equal 2.');",
+ "assert(quotient === 2, 'message: Make the variable quotient
equal to 2.');",
"assert(/\\d+\\s*\\/\\s*\\d+/.test(editor.getValue()), 'message: Use the /
operator');"
],
"challengeSeed": [
@@ -368,7 +371,7 @@
""
],
"tail": [
- "(function(z){return 'answer = '+z;})(answer);"
+ "(function(z){return 'quotient = '+z;})(quotient);"
],
"type": "waypoint",
"challengeType": "1"