Javascript Quiz: what's wrong with this code?


['a', 'b', 'c'].each(function(id) { 
  alert(id)
})

['d', 'e', 'f'].each(function(id) { 
  alert(id)
})

Assume that "prototype":http://prototype.conio.net is being used, of course.