Help me in solving GSQ05 problem

My issue

In the given query i need to insert the employee details. I am unable to simultaneously enter the two records using INSERT INTO clause.

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');

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