In example of section 1.2 the first variable with name record must be replaced by user_record
`
user_record = ('Dave', 'dave@example.com', '773-555-1212', '847-555-1212')
name, email, *phone_numbers = user_record
name
'Dave'
email
'dave@example.com'
phone_numbers
['773-555-1212', '847-555-1212']
`
In example of section 1.2 the first variable with name record must be replaced by user_record
`