Reading EEPROM from Nano on the fly

I need to read what I had stored in the eeprom memory while the micro is still working.
Every time I search "how to read the Arduino EEPROM memory" I find different sketches with loops, methods, etc. I dont want to modify my current sketch. I just want to collect the information in the EEPROM.
Is there any way to do it ?
Thanks in advance.

Best regards.

But how without modification of sketch?
There are examples for r/w EEPROM.
EEPROM is not very feasible for data collecting. For some setup data, yes. However, EEPROM has limit about 100k write/erase cycles for a cell. It is not good for frequent writes. Not talking about some mistake in program which can destroy EEPROM in a moment.
Use SD card instead.

I assume that the micro is running a program is what you indicate when it is working. Nope, you must add that to your code. This response is to help you get started in solving your problem, not solve it for you.
Good Luck & Have Fun!
Gil