You can concatenate strings in Elixir using the <> operator:
<>
"Hello" <> "World" # => "HelloWorld"
For a List of Strings, you can use Enum.join/2:
List
Enum.join/2
Enum.join(["A", "few", "words"], " ") # => "A few words"