Echo custom taxonomy term name

I managed to solve this and I will post the answer:

<?php
  $args = array('number' => '1',);
  $terms = get_terms('recipes', $args );
    foreach( $terms as $term ){
    echo '<div class="title">' . $term->name . 'recipe</div>';
    }