I2C - Combining bytes into another variable - Trying to use union but failing

Updated it to:

          for ( int i = 0; i < 3; i++)
          {
            Received_Byte_Array[i] = Wire.read();
          }

Is this correct? Still getting the error: Recevied_Byte_Array was not declared in this scope

Thanks AWOL