We have a flow that emits all integer numbers.
Add transformations to it to only take the first 10 even numbers greater than 99. Also, convert these numbers into a string representation in the hexadecimal (base 16) format.
Tip: An even number is a number divisible by 2.
Tip: Convert int into string with a given radix using the Int.toString(radix: Int) function.