Help me in solving SQW29 problem

My issue

what is the problem when ide , even after righting correct code it’s not giving output

My code

/* Write a query to output the following
- product_id, units_sold and month of sale for all high margin products sold in the year */

SELECT *
FROM 
    monthly_sales ms
JOIN 
    division_product_sales dps
ON 
    ms.product_id = dps.product_id
WHERE 
    dps.margin_category = 'High_Margin'
AND 
    ms.year = '2024'; -- Replace with the desired year

Learning course: Database management systems
Problem Link: Project - JOIN and Filtering in Database management systems