fix(curriculum) Statistics Calculator typo Step 32 (#57678)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Supravisor
2024-12-23 20:59:07 +13:00
committed by GitHub
parent 4f176f9c4e
commit b732afbaa8

View File

@@ -14,7 +14,7 @@ Below those function calls, add a `console.log(getMode(numbers))`.
To see the result, enter the numbers `4, 4, 2, 5` and click on the `"Calculate"` button. Open up the console to see the following array:
```js
[ 2, 4, 4, 5 ]
[ 4, 4, 2, 5 ]
```
# --hints--