The following examples will use this array to demonstrate accessing values
var exampleArray:[Int] = [1,2,3,4,5]
//exampleArray = [1, 2, 3, 4, 5]
To access a value at a known index use the following syntax:
let exampleOne = exampleArray[2]
//exampleOne = 3
Note: The value at index two is th...