Returns an array of the specified column from the table.
column(nameOrIndex)
nameOrIndex
The name or index of the column to return.
new Table(["Item", "Count"], [ ["Bicycle", 5], ["Scooter", 2] ]).column("Item")
["Bicycle", "Scooter"]