function* generatorFunction() {
    yield "Hello"
    yield "World"
    
}

const generatedValue = generatorFunction()

for(const word of generatedValue){
    console.log(word)
}
   
console.log([...generatedValue])

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: