You pipe one readable into a destination, then pipe a second readable into the same destination. What goes wrong with the naive code below?src1.pipe(dest); src2.pipe(dest);