Saving arrays in EEPROM using ARDUINOMEGA

Sry this is the code..

#include <EEPROM.h>

void setup()
{
  Serial.begin(9600);
  int reference = 323;
  int gas = 1234;
  int serial;
  
  EEPROM.write(0,323);
  
  serial =EEPROM.read(0);
  
  Serial.print(serial);
  
  
}
void loop()
{
    
}