From ae6271964f59ebc47d6064983a216dbb15f5df85 Mon Sep 17 00:00:00 2001 From: ahstro Date: Fri, 21 Aug 2015 21:22:25 +0200 Subject: [PATCH] Moved myArray into 'Only change code'-block --- seed/challenges/basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 87d00dbfbb..76ef3ce83a 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -432,9 +432,9 @@ "challengeSeed": [ "//var array = [\"John\", 23];", "", - "var myArray = [];", "// Only change code below this line.", "", + "var myArray = [];", "", "// Only change code above this line.", "// We use this function to show you the value of your variable in your output box.", @@ -457,9 +457,9 @@ ], "challengeSeed":[ "var ourArray = [[\"the universe\", \"everything\", 42]];", - "var myArray = [];", "// Only change code below this line.", "", + "var myArray = [];", "", "// Only change code above this line.", "// We use this function to show you the value of your variable in your output box.",