CSS Linear Gradient

https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-gradual-css-linear-gradient

What is the right answer?

*/
div {
border-radius: 20px;
width: 70%;
height: 400px;
margin: 50px auto;
background: linear-gradient(35deg, red, yellow, #CCFFFF);
}

*/ That's my code that I couldn't pass

@alphaleo
You have not given the correct values into the background: property. They did not mention any red or yellow to be added, they have given instruction to add those two hex values they specified.