WooCommerce add custom order count in admin backend

Based on that article Include order count from custom order status in WooCommerce admin menu, I know that we can adjust the count from the WooCommerce default “in processing” orders count. We want to add a second count for orders in a special status “shipped”. I don’t find a way to add this second count in that area.

// Add orders count of a specific order status
function filter_woocommerce_menu_order_count( $wc_processing_order_count ) {
    // Call function and pass custom order status
    $order_count_shipped = wc_orders_count( 'shipped' );
    
    return $wc_processing_order_count + $order_count_shipped;
}
add_filter( 'woocommerce_menu_order_count', 'filter_woocommerce_menu_order_count', 10, 1 );

Does someone know how I can add there such a count in blue?

enter image description here