I generated 10 random numbers and put it in array V0(9) but I have problem to display the array numbers in listbox.

Randomize()

For i = 0 To 9
i = 0
V0(i) = Rnd()
Next

For i = 0 To 9
i = 0
ListBox1.Items.Add(V0(i))
Next

Can help with my code??