keysRetrieves all the keys in a map as a listkeys(targetMap)CopyParameters#targetMap: A map whose keys are neededReturns#list of map keysExample#print(keys({orders: 10, shipments: 2}))# prints, [orders, shipments]Copy