XML Flash ActionScript

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var novel:XML = 
            ActionScript
            J, J
            Books Ltd
          ;
        
        var tempRoot:XML = ;
        tempRoot.appendChild(novel);
        
        trace(tempRoot..*.comments(  )[0]);  // First comment in the document
    }
  }
}