DuckDB now proposes the following duckdb documentation page :
select array_to_string(['1', '2', 'sdsd'], '/')
which is a more compact way to write:
SELECT list_aggr(['1', '2', 'z'], 'string_agg', '-')
nb: it only works if all elements are of the same type