Im trying to create a Black Jack Testing game. The concept is that you are given three cards out of 52 at random, 2 are the players and 1 is the dealers. There are four buttons available: Hit, Stay, Double, Split. When the player sees the three cards he should hit one of the buttons, if the right button is clicked a new random set of three cards are shown. If the player selects the wrong button a message will say wrong and the player will guess again, once he chooses the right option 3 new cards are shown at random.

Currently I have created a new dictionary and loaded 52 images from My.Resourses:
Private imgList As New Dictionary(Of String, Bitmap)

I have all my images loaded and when I select the deal button 3 cards are all shown at random. The part I'm stuck on is how to create an If Then statement when the user selects the Hit/Stay/Double/Split option based on the images that are shown.

How can I give images that are shown randomly a value that can be used in an If Then statement of a users selection?