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 26163457..b5a4075b 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -316,7 +316,7 @@ The syntax is: ```js let result = arr.map(function(item, index, array) { // returns the new value instead of item -} +}) ``` It calls the function for each element of the array and returns the array of results.