Map enumerator

Below is a sample code that retrieves values from a map.
MapEnumerator me = map.getEnumerator();

while (me.moveNext())
{
    info(strfmt("%1,%2", me.currentKey(), me.currentValue()));
}