Some times get_post_custom_values not work for direct array at that time we have to use foreach loop like below.
<?php
$mykey_values = get_post_custom_values(‘Designation’, $post->ID);
if(is_array($mykey_values)):
foreach ( $mykey_values as $key => $value ) {
echo “($value km)”;
}
endif;
?>