Display terms on product page with shotrcode

I fix it with:

function the_function_name() {
echo get_the_term_list( $product->ID, ‘YOURTAXONOMY’, ‘Label Taxonomy: ‘, ‘, ‘, ”);
}
add_shortcode(‘mycustomshortcode’, ‘the_function_name’);