diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md index c60160bcf2d..83508131f07 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md @@ -26,13 +26,13 @@ Change the `0` so the difference is `12`. # --hints-- -The variable `difference` should be equal to 12. +The variable `difference` should be equal to `12`. ```js assert(difference === 12); ``` -You should only subtract one number from 45. +You should only subtract one number from `45`. ```js assert(/difference=45-33;?/.test(__helpers.removeWhiteSpace(code)));