Levers are simple machines with a rigid beam and a fulcrum. From the picture below, you can see that there are 3-types of levers: first class, second class and third class.

Given an array that contains the fulcrum "f", the effort "e", and the load "l", write a function that determines whether or not the array shows a first class lever, second class lever, or a third class lever.
determineLever(["e", "f", "l"]) ➞ "first class lever"
determineLever(["e", "l", "f"]) ➞ "second class lever"
determineLever(["f", "e", "l"]) ➞ "third class lever"
A pair of scissors is a first class lever, a nutcracker is a second class lever and a broom is a third class lever.