How to insert wp_users ->user login name to wp_terms when a new user registering?

i got the solution for this

add_action('user_register', function ($user_id) {
    $user_info = get_userdata($user_id);
    $user_name = $user_info->user_login;
    wp_insert_term($user_name, 'user1', array());
}, 10, 1);