diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/6352e93db104661305c5f658.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/6352e93db104661305c5f658.md index 2360600b0dc..f4348f6e172 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/6352e93db104661305c5f658.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-advanced-array-methods-by-building-a-statistics-calculator/6352e93db104661305c5f658.md @@ -21,7 +21,7 @@ numbersArr.forEach((el) => { }); ``` -Check if the current number is already in the `counts` object. If it is, incremented by `1`. If it is not, set it to `1`. +Check if the current number is already in the `counts` object. If it is, increment it by `1`. If it is not, set it to `1`. Resulting object. The keys are the numbers from the array and the values are the number of times each number appears in the list: