diff --git a/src/userprog/process.c b/src/userprog/process.c
index 89350efe02c649492b01c2dac2a0285decd75462..0e8736f826ca7b670bdc5aceced8f48807eb324f 100644
--- a/src/userprog/process.c
+++ b/src/userprog/process.c
@@ -66,7 +66,14 @@ process_execute (const char *file_name)
     // tokenisation code  Mohamed2 Almarri (m2-almarri)
 
     /* team members should handle these data and prepare it for task 2 in arguments passing */
+    file_name=file_name_extracted; //assign the extracted filename to the original var to be passed.
+    //prints out to check the args 
 
+    printf("filename: %s\n", filename);
+  
+    printf("args1: %s\n", args1);
+    printf("args2: %s\n", args2);
+    printf("args3: %s\n", args3);