$term_list = wp_get_post_terms( $product_id, 'product_tag', array( "fields" => "names" ) );
foreach( $term_list as $term ) echo $term . '<br/>';
The first line will get all tags associated with the product, and the second line will display them all.