How can I find related learndash course id from woocommerce product object?

I have found the answer. It is for anyone who might find it helpful:

get_post_meta(ID, '_related_course', true);

Here ID will be the WooCommerce Product ID. It will output the course id in array. Just need to extract the ID from there.