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