i=0
word="hello"

//read -p "Please enter a word to spell: " word
for ((i=1;i<=${#word};i++)) do
        echo "Letter $i" . $word | cut -c$i
done