readBytes()

Serial.readBytes() reads characters from the serial port into a buffer.
Serial.readBytes() returns the number of characters placed in the buffer. A 0 means no valid data was found.

Serial.readBytes(buffer, length)
buffer: the buffer to store the bytes in (char[] or byte[]). length: the number of bytes to read (int). size_t