Understanding jQuery Ui Clones

Understanding jQuery Ui Clones

I am a little confused, I thought that once the clone's ID is changed to something different, it is no longer the same as the original. 

To my surprise the clone id is the same as the original draggable object's id although the clone's id had been changed.

Please look at my code below.
  1. var uiNewId = "test1";

  2. $("#obj1").draggable({
  3.     helper:'clone'
  4. });  

  5. $("#dropzone").droppable({    
  6.     drop: function(event,ui){
  7.         ui.helper.attr('id', uiNewId);
  8.         alert((ui.draggable[0]).id);
  9.     }
  10. });
Shouldn't the alert message show test1 instead of obj1? Also, ls the ui inside of the drop function referring to the original draggable object or is it referring to its clone?