Sure, just write or print the same data to all 3, like this
Serial1.write(myArray, sizeof(myArray));
Serial2.write(myArray, sizeof(myArray));
Serial3.write(myArray, sizeof(myArray));
Each port has a transmit buffer in memory, so your writes go quickly into the buffer and then the hardware...