Help me in solving GSQ04 problem

My issue

Donde puedo hacer esto

My code

/* Write a query to create a table 'employee', with columns employee_id, employee_Name and Department. 
Update the blanks below to solve this problem */

CREATE TABLE employee
(
    Employee_id ___ , /* Integer Data type assigned to the variable */
    Employee_Name   ____, /* TEXT Data type assigned to the variable */
    Department  ____ /* TEXT Data type assigned to the variable */
);

Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone