Help me in solving SQW33 problem

My issue

I guess this is the asked answer if not, it could help if i get the table format

My code

Select product_catalog.product_id,units_sold,month from product_catalog
join division_product_sales
on product_catalog.product_id=division_product_sales.product_id
where division_product_sales.units_sold = (
        Select min(units_sold) 
        from division_product_sales
        where product_id=product_catalog.product_id)
order by division_product_sales.product_id;

Learning course: Learn Data Analytics using SQL and Python
Problem Link: CodeChef: Practical coding for everyone