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