//There's a new way to create a slice. make allows you to create a slice with a starting capacity of the len of the numbersToSum we need to work through.
// sums := make([]int, lengthOfNumbers)
// for i, numbers := range numbersToSum {
// sums[i] = Sum(numbers)
// }
// Using the append method you do not have to worry about capacity and index errors
// append will create a new slice with greater capacity and the new value added to it.
// The is a different between len() and capacity() capacity is the allocated size, and there
// is an algorithm used by append to determine when it needs to change.