Scala has a lot of pre-built methods. We are going to learn about one related toListcalledsum.
sumwill go through each element of the List and add all the elements together.
It is actually a shortcut forlist.fold(0)( _ + _ ). It might look strange syntax right now but SKB will help you become an expert soon.