Create the variable updated that saves a list made by applying the expression age + 1 for each age value of ages.
updated
age + 1
age
ages
Make sure to type updated = [age + 1 for age in ages].
updated = [age + 1 for age in ages]