diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index 5cdbe30a..522e7ec4 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -418,7 +418,7 @@ Remember [arrow functions](info:function-expression#arrow-functions)? We can use arr.sort( (a, b) => a - b ); ``` -This works exactly the same as the other, longer, versions above. +This works exactly the same as the other, longer, version above. ```` ### reverse