Help me in solving GSQ07 problem

My issue

Write a query to add the below mentioned employee details to the ‘Employee’ table.

Employee_id - 6,
Employee_Name - ‘Brandon Kim’,
Department - ‘Operations’

Ans :- insert into employee values(6,‘Brandon Kim’,‘Operations’)

error—
Parse error near line 18: near “select”: syntax error
KLzY8opDcPxjvraHBuERFGSg01Jv0iZbowCZxGP6QQ-suffix select * from employee
error here —^

My code

insert into employee values(6,'Brandon Kim','Operations')

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

@miteshwaghe Please refer below solution

INSERT INTO employee (Employee_id,Employee_Name,Department)
VALUES (6,‘Brandon Kim’,‘Operations’);

thank you so much