Campurkan Bash String

foo="Hello"
foo="${foo} World"
echo "${foo}"
> Hello World
C0W