what i'm tryna to create is a program that displays a random description of a person from an array when the form loads.
i tried this but it keeps outputing only one string and thats RAND(1)
Public Class male
Public Property stringpass
Private Sub male_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim RAND(2)
RAND(0) = "Nobody's perfect of course and Frederick has plenty of less favorable characteristics too." & Environment.NewLine & " His pompous nature and desperation tend to get in the way even at the best of times." & Environment.NewLine & "Fortunately his grace is there to relift spirits when needed."
RAND(1) = "Animal"
RAND(2) = "Construct"
Label2.Text = RAND(rnd)
Label1.Text = stringpass
End Sub