Sorry if it was already posted, i'm new here.
I don't know ECMA specification about this, but it seems that associativ arrays are not supported in FFish ( they are in Actionscript and Javascript ).
Are you planning to support it ?
Code:
var _array = new Array();
_array[ 3 ] = 123; // ok
_array[ "test" ] = 456; // error (invalid index)
Thanks, and bravo for the great work
M.