You seem to have two arrays each with 20 values. At the moment the arrays are defined as ints so the 20 values occupy 40 bytes and the nRF24 can only send 32 bytes in a message.
However none of your values exceeds 255 so you could define the arrays as bytes and then they would occupy 20 bytes which would easily fit in a single nRF24 message.