Write a function named kineticEnergy() that calculates the kinetic energy of an object according to the following formula:
Kinetic energy = 1/2 mv2
where m represents the object's mass in kilograms, and v represents the object's velocity in meters per second. Your function should take two float arguments for the mass and velocity, and return the answer as another float value.