Concatenates (combines) two arrays.
{
"pets": [
"Cat",
"Dog",
],
"wild": [
"Lion",
"Tiger",
],
}{%- assign animals = pets | concat: wild -%}
Pets and wild Animals:
{% for name in animals -%}
- {{ name }}
{%- endfor %}Output
Sellers and buyers: