How can I access elements by array index instead of dictionary key? I tried the following: ``` Mustache.render("{{:a.:1}}", Dict(:a => [0])) Mustache.render("{{:a.1}}", Dict(:a => [0])) Mustache.render("{{:a[1]}}", Dict(:a => [0])) ```