var iter = Iterator({ x: 1, y: 2, z: 3 });
for (var item in iter) {
  alert(item); // => "x,1", "y,2", "z,3"
}
