Grid-column to Control Spacing

This are the questions.
I have passed the first one but stuck on the second one

  1. item5 class should have a grid-column property.

  2. item5 class should have a grid-column property which results in it consuming the last two columns of the grid.

my codes

<style>
  .item1{background:LightSkyBlue;}
  .item2{background:LightSalmon;}
  .item3{background:PaleTurquoise;}
  .item4{background:LightPink;}

  .item5 {
    background: PaleGreen;
    
    /* add your code below this line */

grid-column: 1/ 3;
    
    /* add your code above this line */
  }

  .container {
    font-size: 40px;
    min-height: 300px;
    width: 100%;

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums