string="you got a friend in me" IFS=' ' read -ra split <<< "$string" echo "${split[*]}" # Output: you got a friend in me echo "${split[3]}" # Output: friend