Remove the coupon does not exist message for specific coupons

Steps to remove the "coupon does not exist" message for certain coupons.

add_filter('woocommerce_coupon_error', function ($error_message, $error_code, $coupon){
    $awdr_coupons = ['example1', 'example2'];        //You can add the coupons here (with comma separate)
    if(in_array($coupon->code, $awdr_coupons)){
        $error_message = '';
    }
    return $error_message;
}, 10, 3);