combine strings bash

Shell
foo="Hello"
foo="${foo} World"
echo "${foo}"
> Hello World
Source

Also in Shell: