I have a variable with a string value. Say:
str = "hello, world"
How can I convert that into an array of the individual characters from the original string?
The desired result for the above example would be:
['h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd']