Code works on ATtiny84, but not ATtiny44A

const int maxTurns = 100; // The maximum number of random numbers that will be generated.
int randomArray[maxTurns]; // Array that will store the random numbers for the game
int inputArray[maxTurns];  // Array that will store user input

...alone is 400 bytes of memory. How much SRAM does the ATtiny44 have?

Can the arrays be changed to an eight bit data type?