Create a function that accepts a string of space separated numbers and returns the highest and lowest number (as a string).
highLow("1 2 3 4 5") ➞ "5 1" highLow("1 2 -3 4 5") ➞ "5 -3" highLow("1 9 3 4 -5") ➞ "9 -5" highLow("13") ➞ "13 13"