Is it possible to save results individually for each player?

Is it possible to save results individually for each player?
I would like to store each player’s quiz answers so that they can later view the answers to the questions they selected through the UI.
Ideally, I’d like players to be able to view up to their five most recent questions, with the oldest one being removed whenever a new one is added.
Would this be possible?
I would also appreciate it if you could tell me what kind of verse code to write.

Hey, I think maybe a tracker could be used, track an event from the correct answer and track the event from the wrong answer, they have the persistence setting, and it’s one of the devices that tracks per player.

Actually maybe a switch would be better, using it’s on/off state with persistence on to be the indicator of right or wrong and starting disabled, can be enabled sequentially by turn.

If you’re comfortable in Verse you can save a wide variety of data for each player. It’s a bit complicated, but I’m using it to save the players level in each of multiple tasks in my map.

Using Persistable Data in Verse | Fortnite Documentation | Epic Developer Community

Using devices, as suggested by @studyingUEFN above would also work well for your needs, and is simpler than with Verse (but not as flexible).