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 f5be9750c4..e9654612e7 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 @@ -41,7 +41,7 @@ You will have to check if the current value is already on the array to be return // Creates an empty array to store our final result. var finalArray = []; - // Loop through the arguments object to truly made the program work with two or more arrays + // Loop through the arguments object to truly make the program work with two or more arrays // instead of 3. for (var i = 0; i < arguments.length; i++) { var arrayArguments = arguments[i];