Arrays are one of the most used data types in an application (app). We use arrays to organize our application (app) data.
Swift makes it easy to create an array in our code using an array literal. Array elements are simply surrounded by a comma and the list of values is separated with square brackets.
For Example,
// Add ‘Int’ elements in an Array
let natural number = [1, 2, 3, 4, 5, 6, 7]
// Add ‘String’ elements in an array
let countryName = [“India”, “Japan”, “Malaysia”, “Peru”, “Russia”]