Help me in solving DBINTRO701 problem

My issue

whts the error

My code

/* Write a query which does the following
- Create a table 'customer'.
- Add the below mentioned data into it to the table 'customer'.
- Output the entire table.
*/
create table customer (
Id int primary key,
Name text not null,
Age int not null,
address text not null);


insert into customer(Id,NAme, Age, address)
values (1,'John Smith', 25, '123 Main St'),
        (2,'Sarah Johnson', 30, '456 Broadway'),
        (3,'Michael Brown', 45, '789 5th Ave'),
        (4,'Jessica Davis', 28, '321 Elm St'),
        (5,'David Lee', 35, '1	555 Park Ave');
        
select * from  customer;

Learning course: Database Management System
Problem Link: https://www.codechef.com/learn/course/sit-dbms/DBINTRO7/problems/DBINTRO701