There must be some really elegant way of copying end of the Array using Swift starting from some index, but I just could not find it, so I ended with this:
f
You could use filter
filter
func getEndOfArray( arr : [Int], fromIndex : Int? = 0) -> [Int] { let filteredArray = arr.filter({$0 <= fromIndex}) return filteredArray }
took the liberty of changing to [Int] for the sake of this example.
[Int]