to set the background color of an element you can use the background-color property or simply use the background property. you can read here for more information.
For this example you are instructed thus:
Let’s improve our browser compatibility by adding anotherbackgrounddeclaration right before the existing declaration and set its value to red.
So you should use the background property to effect your changes. This will take advantage of the cascade because of the order of declaration between the two background statements. That is, since background: red is the first declaration it will be applied first, then if the browser supports the second variable background declaration that color will be applied overwriting the first. Otherwise if the second (variable) color is not supported the browser will “fallback” to the first color declaration.
Your only mistake is using background-color instead of background