Code:
For j = 1 To 12
    For i = 1 To 31
        Randomize
        x = Int(Rnd * 13 + 1)
        winner(j, i) = x
        Listj.AddItem winner(j, i)
    Next i
Next j
How can i accomplish adding the numbers to different Listboxes? The number of list depends on the counter of the outer for cycle (So i want to put 31 random numbers to different ListBoxes, e.g. List1, List2, .. List12)

Edit: Actually if there's a simple way to show these data in a table, that would do it too.