How to create an Array in JavaScript?
Var x = new Array(50);
Var x = new Array[50];
Var x = Array(50);
Var x = Array[50];