Como converter string em matriz de personagem

let name = "King"
let arr = Array(name)

print(arr)
Foolish Fowl