My objective is to transform a message like hello into an array of [h,e,l,l,o]. While other questions and answers often suggest using the split method to convert a list into an array, it's not practical for me since no one would actually type h,e,l,l,o with commas. I believe the solution is quite simple and I may be missing something obvious, but so far I have been unable to find a working solution.
I've experimented with text.split using various separators, but none have provided the desired outcome. All I want is to convert any string, whether it's a single word or multiple words, into an array of individual characters.