How to get data from an array using get_user_meta()

The function is <?php get_user_meta($user_id, $key, $single); ?>

The $single is a boolean that returns a single value for true or an array if set to false, in your case you would set it to false.

$user_output =  get_user_meta($user_id, 'fbasics', false);
 var_dump($user_output);