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 3ff942e456..b60373f64d 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
@@ -22,7 +22,7 @@ We have defined a function, forecast
, that takes an array as an arg
```yml
tests:
- text: 'forecast
should return ["warm", "sunny"]'
- testString: 'assert.deepEqual(forecast(["cold", "rainy", "warm", "sunny", "cool", "thunderstorms"]), ["warm", "sunny"], "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");'