Making a table for scores

I wish to make a table to keep scores that are incremented each round. The table arrangement does not seem to work

The table arrangement is not meant to display lists of lists.
Nesting Horizontal Arrangements inside Vertical Arrangements is preferred.

To show a list of lists, convert it to a csv table (Comma Separated Values), and show it in a multiline label.

Fancier ways exist, like ListViews.

I did it once before but not with incrementing a score, with the orig AI

How many players' scores do you want to track, and should they persist while the app is closed?

For storage purposes, a TinyDB NameSpace SCORES is the easiest, with tag = player name and value = player score, with default 0 if not found.

I'll try that, thanks