Returns list of property names of an object.
list keys( object input )
Returns a list of property names that exist on the input object.
input
{obj={"a":"Hello","b":"World"}} {keys(obj)} ---> ["a","b"]