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