Help me in solving GSQ06 problem

My issue

whats the error here

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,  '123 Main St john@example.com'),
        (2, 'Sarah Johnson', 30,'456 Broadway sarah@example.com');

SELECT * FROM employee; 

Learning course: Learn Data Analytics using SQL and Python
Problem Link: CodeChef: Practical coding for everyone

hii… that you have mention semicolon properly in second line "(1, ‘John Smith’, 25, ‘123 Main St john@example.com’), ".