diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md
index af5c65befc..741d474e6f 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/confirm-the-ending.english.md
@@ -35,8 +35,8 @@ tests:
testString: assert(confirmEnding("He has to give me a new name", "name") === true);
- text: confirmEnding("Open sesame", "same")
should return true.
testString: assert(confirmEnding("Open sesame", "same") === true);
- - text: confirmEnding("Open sesame", "pen")
should return false.
- testString: assert(confirmEnding("Open sesame", "pen") === false);
+ - text: confirmEnding("Open sesame", "sage")
should return false.
+ testString: assert(confirmEnding("Open sesame", "sage") === false);
- text: confirmEnding("Open sesame", "game")
should return false.
testString: assert(confirmEnding("Open sesame", "game") === false);
- text: confirmEnding("If you want to save our world, you must hurry. We dont know how much longer we can withstand the nothing", "mountain")
should return false.