Help me in solving GSQ05 problem

My issue

INSERT INTO employee (Employee_id, Employee_Name, Department)
VALUES
(4, ‘Marcus Garcia’, ‘Product’),
(5, ‘Samanta Park’, ‘Hr’);

My code

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

INSERT INTO employee (Employee_id, Employee_Name, Department)
VALUES
(4, 'Marcus Garcia', 'Product'),
(5, 'Samanta Park', 'Hr');

Learning course: Learn SQL
Problem Link: Insert table Practice Problem in Learn SQL - CodeChef