Arrays in JavaScript are created using the Array constructor with 'new' keyword. Option A shows the correct syntax: new Array(). Options B, C, and D incorrectly place keywords and variable names in the wrong order - they mix up the constructor name with the variable name.