If I have this handlebars template:
<p>{{array.0.title}}</p>
and this context
array: [{title: First Title},
{title: Second Title}]
It will output
<p>First Title</p>
Is it possible to dynamically change the 0 so that it will output
<p>Second Title</p>
Ideally, I would be able to use a variable such as index in the handlebar expression:
{{array.index.title}}
Is there a way to do this?