diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md index e9654612e7..0709e177de 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md @@ -185,9 +185,8 @@ uniteUnique([1, 3, 2], [5, 2, 1, 4], [2, 1]); ### Code Explanation: -* We first use `concat()` with an empty array `]` as a starting point and the spread operator `...` to create an array out of the Arguments object and to flatten it at the same time +* We first use `concat()` with an empty array as a starting point and the spread operator `...` to create an array out of the Arguments object and to flatten it at the same time * then we use the new ES2015 **Set** object to store only unique values -* (to learn more about Sets, read [here) #### Relevant Links