diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-data-structures/copy-array-items-using-slice.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-data-structures/copy-array-items-using-slice.english.md
index 994418da23..58e8c495a4 100644
--- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-data-structures/copy-array-items-using-slice.english.md
+++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-data-structures/copy-array-items-using-slice.english.md
@@ -29,7 +29,7 @@ We have defined a function, forecast
, that takes an array as an arg
```yml
tests:
- - text: forecast
should return ["warm", "sunny"]
+ - text: forecast
should return ["warm", "sunny"]
testString: assert.deepEqual(forecast(['cold', 'rainy', 'warm', 'sunny', 'cool', 'thunderstorms']), ['warm', 'sunny'], 'forecast
should return ["warm", "sunny"]
');
- text: The forecast
function should utilize the slice()
method
testString: assert(/\.slice\(/.test(code), 'The forecast
function should utilize the slice()
method');