[[Array.from (JavaScript)|Array.from]]を使う。 ```ts function* create(): IterableIterator<string> { yield "1"; yield "2"; yield "3"; } const result = Array.from(create()); console.log(result); // ["1", "2", "3"] ```