Ben Newman (2015-06-30T18:34:41.000Z)
d at domenic.me (2015-07-07T02:15:26.084Z)
Kevin is right; I think the equivalence you're looking for is: ```js var arrayIter = [1, 2, ..., n][Symbol.iterator](); var genIter = (function*() { yield 1; yield 2; ... yield n; })(); ```