Excuse my question but I'm quite a novice. I would like the values to be separated with commas and not with jumps. This is how it should turn out: Blue, Green, Black
and not like that
Blue
Green
Black
<?php echo esc_url( $business_data['delivery'] );?>
<i class="fa fa-globe" aria-hidden="true"></i>
<?php print_r ( $business_data['Blue'] ); echo"\n"; ?>
<?php print_r ( $business_data['Green'] ); echo"\n"; ?>
<?php print_r ( $business_data['Black'] );
foreach($business_data['delivery'] as $value){
echo $value . "<br />\n";
}?>