我如何在 Drupal 8 的树枝中渲染数组?

How I may to render array of arrays in twig, Drupal 8?

我的模板有以下 {{dump () }} 输出,它有 'rows' 变量,其中有数组数组:

Dump output

问题:如何在 twig 模板中渲染每个数组(即反馈)?

应该是这样的

{% for row in rows %}
    {{ row.feedback }}
{% endfor %}