how to find the smallest two numbers in an array javascript

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

Also in JavaScript: