diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/remove-whitespace-from-start-and-end.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/remove-whitespace-from-start-and-end.md index 6caed07bf8..bb35ed6c03 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/remove-whitespace-from-start-and-end.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/remove-whitespace-from-start-and-end.md @@ -36,6 +36,12 @@ The `result` variable should not directly be set to a string assert(!code.match(/result\s*=\s*["'`].*?["'`]/)); ``` +The value of the `hello` variable should not be changed. + +```js +assert(hello === ' Hello, World! '); +``` + # --seed-- ## --seed-contents--