From 7c360285aa963c61d6d7eaa5ceee754d5d6bee7e Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Mon, 17 Aug 2015 21:12:19 +0100 Subject: [PATCH] Spaced out code a bit more on the shift challenge --- seed/challenges/basic-javascript.json | 1 + 1 file changed, 1 insertion(+) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 2d96a915892..ed2b25e4435 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -620,6 +620,7 @@ "var myRemoved = myArray; // This should be [\"John\"] and myArray should now be [23, [\"dog\", 3]]", "", "// Only change code above this line.", + "", "// We use this function to show you the value of your variable in your output box.", "// You'll learn about functions soon.", "(function(y, z){return('myArray = ' + JSON.stringify(y) + ' & myRemoved = ' + JSON.stringify(z));})(myArray, myRemoved);"