Help me in solving GSQ06 problem

My issue

Show hidden test case

My code

/* The Query written in the console is trying to insert data to the table employee.
Debug this query to output the entire table */

INSERT INTO employee (Id,Name,Age,Address)
VALUES  (1, 'John Smith', 25,'john@example.com'),
        (2, 'Sarah Johnson', 30,'sarah@example.com');

SELECT * FROM employee; 

Learning course: Database management systems
Problem Link: https://www.codechef.com/learn/course/city-dbms/CITYDBMS09/problems/GSQ06

I can’t open the problem I don’t know why but as I can see,

You have to insert id,name,age and address and here in values you have to put id,name, age and address not email so may be that’s a problem.