array_concat Filter

Appends the given array’s values onto the end of another array

{{ [1,2,3]|array_concat([4,5,6])|json_encode }}

{# [1,2,3,4,5,6] #}