diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md
index 70d17d43c9..f865d890fb 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md
@@ -37,7 +37,7 @@ This code will still return value
by default.
## Instructions
-Rewrite the function assigned to the variable magic
which returns a new Date()
to use arrow function syntax. Also make sure nothing is defined using the keyword var
.
+Rewrite the function assigned to the variable magic
which returns a new Date()
to use arrow function syntax. Also, make sure nothing is defined using the keyword var
.
## Tests