array - an ordered list, where each member of the list (element of the array) is of the same type. Individual elements in the array are accessed by referring to their position in the list (called an index)

var messages = ["Hello", "bye", "GuMo"]
 
 
print(messages[0]) // prints first String, index starts at 0

declaration syntax:

var grades: [Double] = []