Name things for the reader, not the writer.
Create a Flux that emits "A", "B" then throws an error. Use onErrorResume() to switch to a fallback Flux emitting "X", "Y", "Z". Subscribe and print all values.
Expected: A, B, X, Y, Z (each on a new line).
A B X Y Z