In PHP I would do this:
foreach( $array as $key => $value ) { echo $another_array[$key]; }
I can\'t see how to do that in Twig (in Sym
The fastest way:
{% for key,value in array %} {{ another_array[key] }} {% endfor %}