function sum(a, b) {
  let z = a + b; 
  
  return [z, 'The sum of ' + a +' and ' + b + ' is ' + z + '.'];
}
testSum(4, 7);