From fbc5a7da2753f1b3d7889d40d8b63f4bd685cadd 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/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index 190c0a9732..b98ccaace6 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/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;",