This is an array about departments in my organization

I can lay it out as an array literal (recommended) or using new to develop a new instance.
The array literal would be: var depts = ["payroll", "financial", "marketing", "maintenance", "technology"];
and using the new would be: var depts = new Array("payroll", "financial", "marketing", "maintenance", "technology");

Output as I experiment.