that is a variable fallback, needed when the variable value is invalid
you need to add a browser fallback, for browsers that don’t understand variables
you need to add a background declaration in the empty line, writing what you would write to give that color before learning about variables
(reset your code first, as any modification to the rest of the code will fail the tests, even if they are correct things to do usually)
You need to set a fallback for older browsers. See below.
<style>
:root {
--red-color: red;
}
.red-box {
// the actual behavior here is, red is the fallback if --red-color does not exist or invalid.
background: var(--red-color, red);
// ------------------
// Internet Explorer and other older browsers do not support the var() function
// So, the fallback is to set the background twice.
// If the var() function is not supported by the user's browser, fallback to red
background: red;
background: var(--red-color, red);
height: 200px;
width: 200px;
}
</style>
<div class="red-box"></div>