// Write smallestCommonMultiple(arr): given a two-number array like [1, 5],
// return the smallest number evenly divisible by every integer in that
// range (inclusive), e.g. smallestCommonMultiple([1, 5]) === 60 (the LCM
// of 1, 2, 3, 4, and 5). The two numbers can arrive in either order.
function smallestCommonMultiple(arr) {
}