Concept Flow - Map method
Start with array
Call map() method
For each element in array
Apply function to element
Collect result in new array
Return new array
End
The map method takes an array, applies a function to each element, and returns a new array with the results.