Создать быстрый массив

// an array of integer type
var numbers : [Int] = [2, 4, 6, 8]

print("Array: \(numbers)")
SAMER SAEID