{
let a = new Set([1, 2, 3]).values();
return md`Okay, so the values in that set are: “${[...a]}”. Just to remind you, they are “${[...a]}”. Wait, what? I just tried the same thing - \`[...a]\` - twice, and the second time it returned nothing. That's because Set#values returns an iterator over the values in a set that can only iterate over them once.`;
}