// an array of fruits let fruits = ["Apple", "Peach", "Mango"] // for loop to iterate over array for fruit in fruits { print(fruit) }