diff --git a/09_Day_Higher_order_functions/09_day_higher_order_functions.md b/09_Day_Higher_order_functions/09_day_higher_order_functions.md index 9aa6871..4233336 100644 --- a/09_Day_Higher_order_functions/09_day_higher_order_functions.md +++ b/09_Day_Higher_order_functions/09_day_higher_order_functions.md @@ -108,7 +108,7 @@ console.log(sumArray(numbers)) The above example can be simplified as follows: ```js -const numbers = [1, 2, 3, 4] +const numbers = [1, 2, 3, 4, 5] ​ const sumArray = arr => { let sum = 0