i can't add an array of colliders to my trigger

if i try to add an array of colliders to my trigger by object will get killed by anything
that has a trigger. how can i solve this?

SceneLoader sceneLoader;
    public bool isPlayerDead = false;
    [SerializeField] Collider[] deathCollider = new Collider[2];   
    [SerializeField] GameObject ball;
    [SerializeField] ParticleSystem deathVFX;   
    [SerializeField] AudioClip deathSFX;
    [SerializeField] AudioSource audioSource;

    private void Awake()
    {
            
    }

    // Start is called before the first frame update
    void Start()
    {
        sceneLoader = FindObjectOfType<SceneLoader>();
    }

    // Update is called once per frame
    void Update()
    {
       
    }

     public void OnTriggerEnter(Collider deathCollider)
    {     
           PlayerDieing();       
    }

Your question is difficult to understand. Are you complaining that anything that enters the trigger is causing the player to die? If so, check in OnTriggerEnter for only specific things which you want to cause it to die. Checking the tag of the object which entered the trigger is a typical approach, as is checking for a specific component attached.