Hi Is it possible to preserve the order of the keys in a map when the map is returned?: map{"b": 2, "c": 2, "a": 3} return map { "a": 3, "b": 2, "c": 2 } Thanks! Giuseppe