Screen Link: https://app.dataquest.io/m/49/lambda-functions/7/first-class-functions
Your Code: floats = list(map(float, not_floats))
What I expected to happen: It should covert the map object into list as also mentioned in the solution provided by dataquest in this link excercise.
What actually happened: ```—> 18 floats = list(map(float, not_floats))
TypeError: ‘map’ object is not callable``` to format properly
Other details: Please help