Concept Flow - map operator for transformation
Observable emits value
map operator receives value
Transformation function applied
New transformed value emitted
Subscriber receives transformed value
The map operator takes each value from an Observable, applies a function to transform it, and emits the new value to subscribers.