Search
Complete the function makeItOrdinal that takes an array of numbers as input and returns an array of corresponding ordinals.
makeItOrdinal
For instance, if the input array is [1, 2, 3], the function should return ['1st', '2nd', '3rd'].
[1, 2, 3]
['1st', '2nd', '3rd']
For example: