Concept Flow - Array map function
Start with array
Pick first element
Apply callback function
Store result in new array
More elements?
Yes→Pick next element
No
Return new array
The map function takes each element of an array, applies a function to it, and collects the results into a new array.