From 161138d4c6e9712574f42e307aedf9f7976e9fc9 Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Mon, 17 Aug 2015 21:11:01 +0100 Subject: [PATCH] fixed the moved some comments in a seed that were causing confusion --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index ee865796a3..2d96a91589 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -615,9 +615,9 @@ "// ourArray now equals [\"J\", [\"cat\"]]", "", "var myArray = [\"John\", 23, [\"dog\", 3]];", - "var myRemoved = myArray; // This should be [\"John\"] and myArray should now be [23, [\"dog\", 3]]", "// Only change code below this line.", "", + "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.",