This is the code example, as is.
Const Words As String = "Your,Words,In,Here"
Private mCol As Collection
Private Sub Command1_Click()
Dim strWord As String
strWord = mCol.Item(Int(Rnd * mCol.Count) + 1)
MsgBox strWord
mCol.Remove strWord
MsgBox "Now only " & mCol.Count & " words in collection"
End Sub
Private Sub Form_Load()
Dim lngIndex As Long
Dim strWoof() As String
strWoof = Split(Words, ","

Set mCol = New Collection
For lngIndex = 0 To UBound(strWoof)
mCol.Add strWoof(lngIndex), strWoof(lngIndex)
Next lngIndex
MsgBox mCol.Count & " words in collection"
End Sub