i had write this on mustache.html on couchapp
**{{%IMPLICIT-ITERATOR iterator=i}} {{#example}}
hallo {{i}}
{{/example}}**
with this array
{ "example": ["alpha","beta","gamma","delta"] }
but the result from couchapp is like this
hallo alpha,beta,gamma,delta
hallo alpha,beta,gamma,delta
hallo alpha,beta,gamma,delta
hallo alpha,beta,gamma,delta
how can i get just hallo beta and hallo delta?
Thanks