Unquoted expansions split on IFS
Default IFS is space, tab, newline. Always quote "$var". Use read with controlled IFS for structured lines.
Rare tip: set -o noglob (disable globbing) pairs with strict mode when parsing unknown data.
Output
Press Run to execute your code.