Arrays are a very common component of modern programming languages and can be found in virtually all modern programming languages. In Swift, an array is an ordered list of objects of the same type.
When an array is created, we must declare the type of data that can be stored in it by explicit type declaration or through type inference. Typically, we only explicitly declare the data type of an array when we are creating an empty array. If we initialize an array with data, the compiler uses type inference to infer the data type for the array.
Each object in an array is called an element. Each of these elements is stored in a set order and can be accessed by searching for its location (index) in the array.