Persistent storage for Arduino Nano 33 IoT - no EEPROM?

Hi,

This might sound as a very stupid question but is it possible that the Arduino Nano 33 IoT complete lacks any kind of EEPROM storage? I don't see any mention about EEPROM on the product site: Arduino Nano 33 IoT — Arduino Official Store

If my suspicion is true then what is the right way to store persistent data on the Nano 33 IoT that will 'survive' even uploading a new Sketch?

Thanks!

there will be a storage support in nina fw and lib to store to ESP32 flash in the future.
right now you can use the EEPROM emulation library for SAMD Arduino. it uses the flash of the SAMD

Is this the EEPROM emulation library you recommended Juraj?

pert:
Is this the EEPROM emulation library you recommended Juraj?
GitHub - cmaglie/FlashStorage: A convenient way to store data into Flash memory on the ATSAMD21 and ATSAMD51 processor family

yes