Concept Flow - Lambda with map()
Start with list
Apply map() with lambda
For each item: lambda processes item
Collect results into new list
Output new list
The map() function applies a lambda (small function) to each item in a list, creating a new list with the results.