Howdy,

_str() converts a char array to STRING, but str_getchr() returns only a char (or rather a var), so this doesn't work.

You could do something like this instead:

str_cat(myString2, " ");
str_setchr(myString2, str_length(myString2), str_getchr(myString1, i));