Say i have an fruits object i'm passing to a mustache template.
fruits = { 0 => {name: apple} }
I can do this in the mustache template and all is well
fruits.0.name
BUT what if that index is another variable like i, how do i access that property?
fruits.i.name // does not work