How can I set member of an already existing array from Twig?
I tried doing it next way:
{% set arr[\'element\'] = \'value\' %}
but
I had a multi dimension array. The only solution I could find out is create a new temporary array and update/add the information, which was further passed on to another twig function.