Not Working Use @each to Map Over Items in a List

Tell us what’s happening:

Your code so far


<style type='text/sass'>
  @each $color in blue, black , red{
    .#{$color}-bg {background-color: $color;}
  }
  div {
    height: 200px;
    width: 200px;
  }
</style>

<div class="blue-bg"></div>
<div class="black-bg"></div>
<div class="red-bg"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/use-each-to-map-over-items-in-a-list/

the test is very sensitive to spaces so rewrite it to look like this:

  @each $color in blue, black, red{

still its not working

I am using chrome .Does I have to use another Browser