This result came up when I searched, before I remembered the solution, so posting it in case it helps anyone.
https://twig.symfony.com/doc/3.x/tags/with.html
{% set example_array = {foo: 'bar'} %}
{% with example_array %}
{{ foo }}
{% endwith %}