Bash a divisé un mot en caractères

ss="abcdefghi"
my_array=( `echo $ss | grep -o . ` )

echo ${my_array[2]} 

give c

Hutch Polecat