WordPress User role → Fetch and Print(echo)

This was answered here: https://stackoverflow.com/questions/36720949/get-user-role-by-id-wordpress

Here is their answer:

You can’t get user role directly. First, you have to get the user_meta_data, and it will return an Object that will contain user roles.

Code:

$user_meta=get_userdata($user_id);

$user_roles=$user_meta->roles; //array of roles the user is part of.