Use Hex Code to Mix Colors please I am stock here what is the next thing to do? Someone should please help

Tell us what’s happening:

Your code so far


<style>
  .red-text {
    color:#FF0000; black;
  }
  .green-text {
    color:#00FF09; black;
  }
  .dodger-blue-text {
    color: black;
  }
  .orange-text {
    color: black;
  }
</style>

<h1 class="red-text">I am red!</h1>

<h1 class="green-text">I am green!</h1>

<h1 class="dodger-blue-text">I am dodger blue!</h1>

<h1 class="orange-text">I am orange!</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 8.1.0; Infinix X622) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-hex-code-to-mix-colors

the black; there is a syntax error remove it

you need to remove the word black and add the provided exadecimal code for that color (look at class names to know which color goes where)