The correct Array constructor syntax is new Array("item1", "item2", "item3") with values as comma-separated arguments. Options B, C, and D use invalid syntax - you can't assign to Array with =, use numbered keys with colons, or use the colon-equals syntax shown.