dim gen as random = new random()
console.WriteLine(getcard(gen.next(1, 14), gen.next(1, 5)))
function getCard(byval intGetFace as integer, byval intGetSuit as integer) as string
dim face() as string = {"ace", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "jack", "queen", "king"}
dim suit() as string = {"diamonds", "spades", "clubs", "hearts"}
dim Card as string = face(intGetFace - 1) + " of " + suit(intGetSuit - 1)