I merged values of two arrays in a new array.
But I would like to take random values from this array and put them in a loop. That those values iterate in this loop.
{% set myArray = [] %}
{% set list1 = options.transitions_repeater %}
{% set list2 = options.transitions_wahou_repeater %}
{% set myArray = list1|merge(list2) %}
{% for key, val in myArray %}
{{ val|join(', ') }}
{% endfor %}
{% for item in options.projets %}
<li data-transisition="{{ myArray }}"></li>
{% endfor %}
I got the message : Array to string conversion in XX on line XX
Output :
animBottom
animTop
animLeft
directionRight
circles
cube