function sumTwoSmallestNumbers(numbers) { numbers = numbers.sort((a, b) => { return a - b; }); }; //this will turn the numbers list into the 2 lowest numbers