Matriz rápida com tipos de dados mistos

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