printf '%s\n' "${array[@]}" | sort |tr '\n' ' '
printf '%s\n'
-- more robust than echo
and you want the newlines here for sort
's sake
"${array[@]}"
-- quotes unnecessary for your particular array, but good practice as you don't generally want word-spliting and glob expansions there