Help me in solving SQW29 problem

My issue

give the correct query about this problem

My code

SELECT 
    p.product_type, 
    p.product_id, 
    p.units_sold, 
    s.month
FROM 
    division_product_sales p
JOIN 
    monthly_sales s 
ON 
    p.product_id = s.product_id
WHERE 
    p.product_type = 'High_Margin';

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