If user is logged in and has a role echo statement

Your problem is that current_user_can() takes a capability not a user role. So, to check for an administrator, for example, you might use:

if ( current_user_can( 'manage_options' ) ) { ... }

because ordinarily only admins can manage options.

You’d have to tie your custom user roles to capabilities that correspond to their roles, which are defined for each role when you create it with add_role(). For a complete listing of built-in WP roles and their corresponding capabilities, see the codex.