Help me in solving GSQ05 problem

My issue

My code

/* Write a query to insert the below mentioned employee details to the table 'employee' */
INSERT INTO student(Student_id,student_Name,Contact_number)
VALUES(4,"Marcus Garcia","products"),(5,"Samantha Park","Hr")
SELECT*FROM Employee;


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

INSERT INTO employee(emp_id,emp_name,dept)
VALUES (4,“Marcus Garcia”,“products”),(5,“Samantha Park”,“Hr”);
SELECT* FROM employee;