Which code displays a gradient that transitions from azure to chocolate and starts at the top?

background: linear-gradient(azure, chocolate);background: linear-gradient(chocolate, azure);background: linear-gradient(90deg, azure, chocolate);background: linear-gradient(azure, 0, chocolate, 0);

background: linear-gradient(azure, chocolate);.