The code does something that's true. With "doesn't work" I just mean that it isn't what I want, you are right.
EEPROM.write(10, intento1[0]);
EEPROM.write(11, intento1[1]);
EEPROM.write(12, intento1[2]);
EEPROM.write(13, intento1[3]);
EEPROM.write(14, intento1[4]);
Serial.println(EEPROM.read(10));
Serial.println(EEPROM.read(11));
Serial.println(EEPROM.read(12));
Serial.println(EEPROM.read(13));
Serial.println(EEPROM.read(14));
Whits this code the serial prints:
54
55
50
48
50
I already have byte 0 of EEPROM to store users number, that was a good idea!