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
You can use the attribute function.
{{ attribute(another_array, the_index) }}