Name things for the reader, not the writer.
Create a Flux that emits 1, 2, 3 then throws a RuntimeException("Boom!"). Use onErrorReturn() to provide -1 as a fallback value. Subscribe and print all values.
Expected output: 1, 2, 3, -1 (each on a new line).
1 2 3 -1