Sentinel
Builtin Function: values
The built-in function values returns the values of a map.
values called on any value other than a map or undefined will result
in an immediate error.
The returned values are not in any specified order since maps do not have an order.
Examples:
data = { "a": 2, "b": 3 }
values(data)       // [3, 2]