From 7fa479d0870e1c3d7d535d5918d3ead525785e04 Mon Sep 17 00:00:00 2001 From: jshortz Date: Sat, 13 Jul 2019 22:02:51 +0200 Subject: [PATCH] Fixed array values Array values were incorrect. One of the mentors here has suggested that the array creation be removed, as it isn't necessary to accomplish what this asks for. --- Week3/MAKEME.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index 289c6c22d..ea033009b 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -74,7 +74,7 @@ function threeFive(startIndex, stopIndex, threeCallback, fiveCallback) { threeFive(10, 15, sayThree, sayFive); -// Should create an array [10,11,12,12.14,15] +// Should create an array [10,11,12,13,14,15] // and call sayFive, sayThree, sayThree, sayFive // please make sure you see why these calls are made before you start coding ```