Array cepat dengan tipe data campuran

// array with String and integer data
var address: [Any] = ["Scranton", 570]
 
print(address)
SAMER SAEID