From a33ebd3c43d87f1b900b864cb323bc4c58e5fd33 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 1 Jun 2017 02:41:28 -0500 Subject: [PATCH] updated placement for result variable to be more intuitive for newcomes (#15142) --- .../basic-javascript.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index 190c0a9732..b98ccaace6 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -1699,9 +1699,8 @@ "releasedOn": "January 1, 2016", "challengeSeed": [ "function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {", - " var result = \"\";", " // Your code below this line", - " ", + " var result = \"\";", "", " // Your code above this line", " return result;",