Remove dropdown option?

So in my resolution dropdown, there is a bunch of weird refresh rates that Unity for some reason displays (image attached).[151500-df.png*_|151500]
I wanted to remove some of these options, but I can’t find a way to remove an option from a dropdown list, I have no clue, I would appreciate if you could shed some light :slight_smile:

Code:
resolutions = Screen.resolutions;
resDropdown.ClearOptions();

    List<string> options = new List<string>();

    int currentResIndex = 0;
        
    for (int i = 0; i < resolutions.Length; i++)
    {
        string option = resolutions<em>.width + " x " + resolutions_.height + " " + resolutions*.refreshRate +"Hz";*_</em>

options.Add(option);
if (resolutions.width == Screen.currentResolution.width && resolutions_.height == Screen.currentResolution.height && resolutions*.refreshRate == Screen.currentResolution.refreshRate)
{
currentResIndex = i;
}
}
resDropdown.AddOptions(options);
// This is were Im attempting to remove the option.
for (int i = 0; i < resolutions.Length; i++) {
if (options.Contains(“23Hz”) || options.Contains(“24Hz”)) {_

_resDropdown.RemoveOptions(options); // This function does not exist, put it there to get easier to picture what I am trying to accomplish.
}
}

This might be what you are looking for.

resDropdown.options.RemoveAll(c => c.text.Contains("23hz") || c.text.Contains("24Hz");