---
id: 5d822fd413a79914d39e98df
title: Step 23
challengeType: 0
dashedName: step-23
---
# --description--
Hmm, I'm not sure why that didn't work. You can add a fallback value to a variable by putting it as the second value of where you use the variable like this: `var(--variable-name, fallback-value)`. The property will use the fallback value when there's a problem with the variable. Add a fallback value of `green` to the `background-color` of `.bb2`.
# --hints--
You should add a fallback value of `green` to the `background-color` property.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2')?.backgroundColor.trim(), 'var(--building-color2, green)');
```
# --seed--
## --seed-contents--
```html