Aprenda los colores de CSS construyendo un conjunto de marcadores de colores - Paso 19

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.
Me dice que agregue la clase two al segundo div y three al tercer div . Creo que estoy haciendo lo correcto pero el código no pasa

Tu código hasta el momento

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Colored Markers</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1>CSS Color Markers</h1>
    <div class="container">

<!-- User Editable Region -->

      <div class="marker one">
      </div>
      <div class="marker two">
      </div>
      <div class="marker" three">
      </div> 
      

<!-- User Editable Region -->

    </div>
  </body>
</html>
/* file: styles.css */
h1 {
  text-align: center;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.one {
  background-color: red;
}

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36

Desafío: Aprenda los colores de CSS construyendo un conjunto de marcadores de colores - Paso 19

Enlaza al desafío:

The three class name should be inside the same string "" as the marker class name. You have an extra " that is closing the class string before the last class name.

It should be class="classOne classTwo" and not class="classOne" classTwo"