diff --git a/src/main/java/dotsandboxes/Main.java b/src/main/java/dotsandboxes/Main.java
index 98cd350a3380aaa35d947384f8c45e71a937fd72..6c212337dc74f7dd2a7c498036fe78eccc9b2eeb 100644
--- a/src/main/java/dotsandboxes/Main.java
+++ b/src/main/java/dotsandboxes/Main.java
@@ -11,8 +11,8 @@ public class Main {
         JFrame mainWindow = new JFrame("Dots and Boxes");
         DotsAndBoxesGrid grid = new DotsAndBoxesGrid(15, 8, 2);
 
-        // FIXME: Update this label to show your name and student number
-        JLabel label = new JLabel("Name: (Your name and student number goes here)");
+        // FIXME: Update this label to show your name: Chandan(Gerry) and student id: 220278631
+        JLabel label = new JLabel("Name:Chandan Bikram Shah, student number:220278631");
 
         JPanel borderPane = new JPanel(new BorderLayout());
         borderPane.add(label, BorderLayout.SOUTH);