Write a conditional that assigns the boolean value true to the variable fever if the variable temperature is greater than 98.6 .So if temperature has the value 99.5, after your code executes fever would have the value true. On the other hand, if temperature has the value 96.3, your code will not change the value of fever at all. 2-Write a conditional that assigns 10,000 to the variable bonus if the value of the variable goodsSold is greater than 500,000 .