A snipped, based on this question, on how to display all variables – with their names and values within a twig template based on the current context.
<ol>
{% for key, value in _context %}
<li>{{ key }} | {{ dump(value) }}</li>
{% endfor %}
</ol>