ASSIGNMENT: create scripts that tell us what value is returned for the following items:



	          o returnValue = 2 == 3;


	          o returnValue = "2" + "3";


	          o returnValue = 2 >= 3;


	          o returnValue = 2 <= 3;


	          o returnValue = 2 + 3;


	          o returnValue = (2 >= 3) && (2 > 3);


	          o returnValue = (2 >= 3) || (2 > 3);