diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json
index 5aeecfdae6..5f6c188555 100644
--- a/challenges/basic-javascript.json
+++ b/challenges/basic-javascript.json
@@ -670,8 +670,8 @@
"function functionName (a, b) {
",
" return(a + b);
",
"}
",
- "We can \"call\" our function like this: functionName();
, and it will run and return it's return
value to us.",
- "Create and call a function called myFunction
."
+ "We can \"call\" our function like this: functionName();
, and it will run and return its return
value to us.",
+ "Create and call a function called myFunction
that returns the sum of a and b."
],
"tests":[
"assert((function(){if(typeof(f) !== \"undefined\" && typeof(f) === \"number\" && f === a + b && editor.getValue().match(/return/gi).length >= 1 && editor.getValue().match(/a/gi).length >= 1 && editor.getValue().match(/b/gi).length >= 1 && editor.getValue().match(/\\+/gi).length >= 1){return(true);}else{return(false);}})(), 'Your function should return the value of a + b');"
@@ -684,9 +684,9 @@
" return a - b;",
"};",
"",
- "//Don't modify above this line",
- "//Create a function called myFunction that returns the value of a plus b.",
- " // Only change code below this line.",
+ "// Don't modify above this line",
+ "// Create a function called myFunction that returns the value of a plus b.",
+ "// Only change code below this line.",
"",
"",
"",