Create arrays with square brackets:
let numbers = [1, 2, 3, 4, 5]
let names = ["Alice", "Bob", "Charlie"]
let mixed = [1, "two", true, null]
let empty = []
Arrays can hold any types, even mixed types. In practice, keep arrays uniform for easier processing. Use const for arrays you won't reassign (you can still modify contents).