From b4fd0e52bf350fd3c2c2eee3d3617d086fdea067 Mon Sep 17 00:00:00 2001 From: Manish Giri Date: Wed, 22 Mar 2017 02:00:05 -0400 Subject: [PATCH] Update challengeSeed in use spread operator challenge (#13979) --- .../02-javascript-algorithms-and-data-structures/es6.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json b/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json index 115b21203c..90a2ced448 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json +++ b/seed/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" ],