How can you convert a string into an array of characters?
const hello = "hello";
toArray(hello)
hello.split('')
hello.chars()
hello.toArray()