Calling custom profile fields?

Try instead

$user_contactmethods['work'] = __('I work for...');

and

<?php echo get_user_meta($current_user->ID,'work',true);?>

where the array index is 'work' instead of 'I work for...', i.e. lowercase and without any spaces.