diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md
index c4f3aefa75..301e43dc20 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities.english.md
@@ -21,19 +21,19 @@ Convert the characters &
, <
, >
, "
```yml
tests:
- - text: convertHTML("Dolce & Gabbana")
should return Dolce & Gabbana
.
+ - text: convertHTML("Dolce & Gabbana")
should return "Dolce & Gabbana"
.
testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/);
- - text: convertHTML("Hamburgers < Pizza < Tacos")
should return Hamburgers < Pizza < Tacos
.
+ - text: convertHTML("Hamburgers < Pizza < Tacos")
should return "Hamburgers < Pizza < Tacos"
.
testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/);
- - text: convertHTML("Sixty > twelve")
should return Sixty > twelve
.
+ - text: convertHTML("Sixty > twelve")
should return "Sixty > twelve"
.
testString: assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/);
- - text: convertHTML('Stuff in "quotation marks"')
should return Stuff in "quotation marks"
.
+ - text: convertHTML('Stuff in "quotation marks"')
should return "Stuff in "quotation marks""
.
testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in "quotation marks"/);
- - text: convertHTML("Schindler's List")
should return Schindler's List
.
+ - text: convertHTML("Schindler's List")
should return "Schindler's List"
.
testString: assert.match(convertHTML("Schindler's List"), /Schindler's List/);
- - text: convertHTML("<>")
should return <>
.
+ - text: convertHTML("<>")
should return "<>"
.
testString: assert.match(convertHTML('<>'), /<>/);
- - text: convertHTML("abc")
should return abc
.
+ - text: convertHTML("abc")
should return "abc"
.
testString: assert.strictEqual(convertHTML('abc'), 'abc');
```