html table column,HTML Table Column after Column

Is it possible to write the first column in a table in HTML and then the next column? If you write it like this:

Test1Test2Test3
Test4Test5Test6
Test7Test8Test9

You just write the first row and then the second row. But I want to write the first column first. Is this possible?

Edit:

I have 5 Arrays with different sizes. They all include Strings.

Array1[2]: "Thomas", "Jon"

Array2[3]: "Bob", "Karl", "Jake"

Array3[4]: "Stephan", "Barack", "Steve", "Nicole"

Array3[1]: "Robert"

Array5[4]: "Carla", "Carlos", "Niggel", "Cedric"

The Header of the Tables should include the workdays. At the end I will have a Table with 5 Rows and some columns. To create this table I need to write the first Columne with a Loop for the 1. Array. Then a second Column for the second Array and so on. Right?

Do you have another idea how to write this table? I hope you understand my problem.