Help me in solving GSQ06 problem

My issue

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

Your table is named ‘employee’ and has the following columns

Id (INT)
Name (TEXT),
Age (INT),
Address (TEXT)

My code

SELECT * FROM employee;
SELECT Id, Name, Age, Address FROM employee;


Learning course: Database management systems
Problem Link: Debug this query in Database management systems