Correct comment

Replace "ourArray[1]" with "ourArray"
close FreeCodeCamp/FreeCodeCamp#3515
This commit is contained in:
Abhisek Pattnaik
2015-09-28 01:04:59 +05:30
parent 7ad9be3696
commit 86c07dcd97

View File

@ -520,7 +520,7 @@
"challengeSeed":[ "challengeSeed":[
"var ourArray = [1,2,3];", "var ourArray = [1,2,3];",
"ourArray[1] = 3;", "ourArray[1] = 3;",
"// ourArray[1] now equals [1,3,3].", "// ourArray now equals [1,3,3].",
"var myArray = [1,2,3];", "var myArray = [1,2,3];",
"// Only change code below this line.", "// Only change code below this line.",
"", "",