valuesRetrieves all the values in a map as a listvalues(targetMap)CopyParameters#targetMap: A map whose values are neededReturns#list of map valuesExample#print(values({orders: 10, shipments: 2}))# prints, [10, 2]Copy