Add column in WP user but it goes wrong

I assume you have hooked into manage_users_columns. Probably your array_merge is causing the problem. Instead of using $new_columns as the 1st parameter, use it as the 2nd as given below.

$new_columns = array_merge ( $columns, $new_columns );