This commit is contained in:
benmcmahon100 2015-08-21 22:01:03 +01:00
parent 23dc0f2c5e
commit 6a887bbf33

View File

@ -818,6 +818,10 @@
"assert.deepEqual(myArray, [0,1,2,3,4], 'myArray should equal [0,1,2,3,4]');"
],
"challengeSeed":[
"ourArray = [];",
"for(var i = 0; i < 5; i++){",
" ourArray.push(i);",
"}",
"var myArray = [];",
"//Push the numbers zero through four to myArray using a \"for loop\" like above.",
"",