It would be great. Moreover, there is already a solution - you just need to adapt it to your function. I did like this in my task:
add_filter('manage_edit-comments_columns', function($columns)
{
$columns['custom_col_title'] = 'Archive id';
return $columns;
}, 10);
add_action('manage_comments_custom_column', function($column, $comment_ID)
{
if($column == 'custom_col_title')
{
echo get_comment_meta( $comment_ID, 'archive_id_comment_m', true );
}
}, 10, 2);