Help me in solving GSQ06 problem

My issue

Error

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,Addressl)
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: Database management systems
Problem Link: Debug this query in Database management systems