But this way is quite painful and l o n g, and the amount of rows/columns isn't easily editable, and as you can see, I am only on two rows. I am also getting hung up on a lot of missing brackets and stuff when I'm ABSOLUTELY sure I don't need to be.
I'm pretty sure the better solution requires only two nested for loops, but don't give me the answer please...just hints...unless I'm doomed (in that case I will let you all know).
A table consists of rows, rows consist of cells. (These cells form columns).
You can only output data sequentially (ie, you can not output a column, and then put another one next to it, only beneath it).
So you write a table line per line (row per row).
So you will have to tune a row-loop 5 times, and within that loop, you will do another loop that prints the amount of cells you want in each row.