Help me in solving GSQ05 problem

My issue

My code

/* Write a query to insert the below mentioned employee details to the table 'employee' */
SELECT * from employee;

 INSERT INTO employee ( employee_id, employee_Name, Department)
 VALUES (4,'Marcus Garcia','Product');
 
 INSERT INTO employee(employee_id, employee_Name , Department)
 VALUES (5,'Samantha Park','Hr');

Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone