1const arr = [14, 58, 20, 77, 66, 82, 42, 67, 42, 4]
2const min = Math.min(...arr)
3console.log(min)
1function sumTwoSmallestNumbers(numbers) {
2 numbers = numbers.sort((a, b) => {
3 return a - b; });
4}; //this will turn the numbers list into the 2 lowest numbers