Create a function that takes an Arabic number and converts it into a Roman number.
convertToRoman(2) ➞ "II" convertToRoman(12) ➞ "XII" convertToRoman(16) ➞ "XVI"