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 c8ab699..b94fe54 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 @@ -357,7 +357,7 @@ const scores = [ ] const scoresGreaterEighty = scores.filter((score) => score.score > 80) -console.log(scoresGreaterEight) +console.log(scoresGreaterEighty) ``` ```sh