//@target: ES6 class SymbolIterator { next() { return { value: Symbol(), done: false }; } } var array = [...new SymbolIterator];