From 66fc4497cfd20d60e0b7281559427bdfbc8d236d Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Sat, 10 Oct 2015 09:17:36 -0700 Subject: [PATCH] Fix Waypoint Iterate with a For Loop Typo Closes #3691 --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 9c9901a304..f9caca1efe 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -802,7 +802,7 @@ "assert.deepEqual(myArray, [0,1,2,3,4], 'message: myArray should equal [0,1,2,3,4].');" ], "challengeSeed":[ - "ourArray = [];", + "var ourArray = [];", "for(var i = 0; i < 5; i++){", " ourArray.push(i);", "}",