I have already some code which change the control's forecolor randomly in the timer event object which i create an array of colors

VB Code:
  1. Private Sub tmrClock_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrClock.Tick
  2.         Dim MyColor(5) As Color
  3.        
  4.         MyColor(1) = Color.Azure
  5.         MyColor(2) = Color.Bisque
  6.         MyColor(3) = Color.Blue
  7.         MyColor(4) = Color.DarkKhaki
  8.         MyColor(5) = Color.AliceBlue
  9.         Me.lbl1.ForeColor = MyColor(CInt(Int((5 * Rnd()) + 1)))
  10.     End Sub


Are there more better idea? I dont the array style here. Thanks.