Concept Flow - Map function usage
Start with array
Call map() on array
Apply function to each item
Create new array with results
Render new array in JSX
Display list on screen
The map function takes an array, applies a function to each item, creates a new array, and React renders this new array as elements on the screen.