Something like this should work. I wouldn't worry about the different data types, the compiler isn't.
const int WANTED_NUMBER = 67;
uint8_t datastring [WANTED_NUMBER];
bool getData ()
{
if (Wire.requestFrom (0x60, WANTED_NUMBER) < WANTED_NUMBER)
return false; // didn't get number we wanted
// get each byte
for (byte i = 0; i < WANTED_NUMBER; i++)
datastring [i] = Wire.receive ();
return true; // OK
} // end of getData