diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.md index fbf9b7edec6..bca8cb7bd6f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/reverse-a-string.md @@ -8,11 +8,9 @@ dashedName: reverse-a-string # --description-- -Reverse the provided string. +Reverse the provided string and return the reversed string. -You may need to turn the string into an array before you can reverse it. - -Your result must be a string. +For example, `"hello"` should become `"olleh"`. # --hints--