Which is the output?function* g(){yield "a"; yield "b"}\nlet s=""; for(const v of g())s+=v; console.log(s);