The function wp_get_post_terms returns an array of terms, so to show them all, you need to do this:
foreach( $term_list as $term ) echo $term . '<br/>'
The function wp_get_post_terms returns an array of terms, so to show them all, you need to do this:
foreach( $term_list as $term ) echo $term . '<br/>'