Working on challenges for the BetterRest app I ran into two issues. First, 'Range<Int>' is not convertible to 'ClosedRange<Int>'
- The easy fix was to use 0...20
instead of 0..<21
but why? Second, var idealBedtime: String = {
does not create a computed property.