You will have to give this class property of background with value red.
And the reason for that is explained in the challenge as follows:
When your browser parses the CSS of a webpage, it ignores any properties that it doesn’t recognize or support.
For example, if you use a CSS variable to assign a background color on a site, Internet Explorer will ignore the background color because it does not support CSS variables. In that case, the browser will use whatever value it has for that property.
If it can’t find any other value set for that property, it will revert to the default value, which is typically not ideal.
This means that if you do want to provide a browser fallback, it’s as easy as providing another more widely supported value immediately before your declaration. That way an older browser will have something to fall back on, while a newer browser will just interpret whatever declaration comes later in the cascade.