From 88fefcf87b8cc2b307de8d985722a9b17fdcfc15 Mon Sep 17 00:00:00 2001 From: royjohnlee <106703196+royjohnlee@users.noreply.github.com> Date: Thu, 6 Jun 2024 21:45:49 -0700 Subject: [PATCH] fix(curriculum): semantic/grammatical issue (#55106) Co-authored-by: Roy John Lee --- .../65c4dc57418fd6bfc710d61d.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/65c4dc57418fd6bfc710d61d.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/65c4dc57418fd6bfc710d61d.md index 29347f0d848..3caed9a9936 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/65c4dc57418fd6bfc710d61d.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/65c4dc57418fd6bfc710d61d.md @@ -7,7 +7,7 @@ dashedName: step-32 # --description-- -Inside your `getMode` function, on the empty line above your return call `forEach` on `array`. Your `.forEach()` method should have an empty callback function that takes an `el` parameter. +Inside your `getMode` function, on the empty line above your `return` statement, call `forEach` on `array`. Your `.forEach()` method should have an empty callback function that takes an `el` parameter. In the next few steps, you will use this loop to count the frequency of occurrences of each number in the array.