From cab8ecd8baed2996ae36e303dbeb1ac882e99f17 Mon Sep 17 00:00:00 2001 From: Jeremy L Thompson Date: Thu, 24 Nov 2022 11:42:10 -0700 Subject: [PATCH] fix(curriculum): More Open Ended Instructions (#48575) reword - less is more --- .../basic-algorithm-scripting/reverse-a-string.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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--