Given a string, return an array of the characters in the string.
// input: const s = 'hello' // output: ['h', 'e', 'l', 'l', 'o']
/* output */