Hi, Why the Alert method shows "Crazy" string at this code below? I really didn't fingure it out.
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete(event)"> <mx:Script> <![CDATA[ import mx.controls.Alert; public function onCreationComplete(event: Event): void { var a: Array = new Array(); a.push( 2 ); var i: Object = 2; if( a == i ) { Alert.show( "Crazy...!!!" ); } else { Alert.show( "Ok" ); } } ]]> </mx:Script> </mx:Application>

