Create a function that determines if there is an upward trend.
upwardTrend([1, 2, 3, 4]) ➞ true
upwardTrend([1, 2, 6, 5, 7, 8]) ➞ false
upwardTrend([1, 2, 3, "4"]) ➞ "Strings not permitted!"
upwardTrend([1, 2, 3, 6, 7]) ➞ true
"Strings not permitted!".[1, 3, 5] should still return true).