function numbersOutput(numbers) { var num = numbers.split(' '); var max = Math.max.apply(null, num); console.log(max); } numbersOutput("1 2 3 4 5");