add to beginning of array swift

Swift
someArray.insert(someValue, atIndex: 0)//Swift 4
someArray.insert(someValue, at: 0)
Source

Also in Swift: