From 5cd850f666dd02c0b2dd2deb9c9a4705d4fc7df2 Mon Sep 17 00:00:00 2001 From: John Montgomery Date: Sun, 31 May 2020 09:16:00 -0400 Subject: [PATCH] Update wording of what `multiplyAll` should do in "Nesting For Loops" (#38852) --- .../basic-javascript/nesting-for-loops.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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