diff --git a/Form1.cs b/Form1.cs index b22bbe8..7a266d8 100644 --- a/Form1.cs +++ b/Form1.cs @@ -5,6 +5,10 @@ namespace GuessTheCard public Form1() { InitializeComponent(); + + Random random = new Random(); + int randomDice = random.Next(1, 7); + labelCard.Text = "Result : " + randomDice; } } }