diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops.english.md
index 58f54518b8..0a07d2540f 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops.english.md
@@ -27,7 +27,7 @@ This outputs each sub-element in arr
one at a time. Note that for t
## Instructions
-Modify function multiplyAll
so that it multiplies the product
variable by each number in the sub-arrays of arr
+Modify function multiplyAll
so that it returns the product of all the numbers in the sub-arrays of arr
.
## Tests