let value = 5let count = 3let array = [Int](repeating: value, count: count)//array is [5, 5, 5]print("array is \(array)")