Help me in solving GSQ65 problem

My issue

runtime error

My code

/* Write a query cross join the table 'student' and 'course' and check out all possible courses a student can opt. Output the table after cross join */
SELECT 
    s.student_name AS St_Name, 
    c.course_name AS Course_Name
FROM 
    student s 
CROSS JOIN 
    course c;

Learning course: Database management systems
Problem Link: Cross join in Database management systems