diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md index c541f35d3a..1f6141b786 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md @@ -14,7 +14,7 @@ The rest operator eliminates the need to check the args array and a ## Instructions
-Modify the function sum so that it uses the rest operator and it works in the same way with any number of parameters. +Modify the function sum using the rest parameter in such a way that the function sum is able to take any number of arguments and return their sum.
## Tests