diff --git a/challenges/02-javascript-algorithms-and-data-structures/es6.json b/challenges/02-javascript-algorithms-and-data-structures/es6.json index 115b21203c..90a2ced448 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/es6.json +++ b/challenges/02-javascript-algorithms-and-data-structures/es6.json @@ -356,9 +356,7 @@ ], "challengeSeed": [ "const arr1 = ['JAN', 'FEB', 'MAR', 'APR', 'MAY'];", - "const arr2 = [];", - "// change code below this line", - "// change code above this line", + "const arr2 = []; // change this line", "arr1.push('JUN');", "console.log(arr2); // arr2 should not be affected" ],