I want to iterate through an array like this one:
array(
['aaa'] => ['a'],
['bbb'] => ['b']
)
Usually, I would do it this way:
{{#array}}{{array}}{{/array}} // 'a' 'b'
But - how can I display the current key in the loop above? I want to display something like 'aaa' 'a' 'bbb' 'b'
. Is it possible?