Code: ``` var template = Handlebars.compile('{{#each}} {{this}}{{/each}}'); var result = template([ 'aaa', 'bbb ']); ``` Should produce ``` aaa bbb ``` Actually it fails with: ``` TypeError: options is undefined var fn = options.fn, inverse = options.inverse; ```