We'll display how much more the user needs to save in the console. Use a formatted string and print statement to notify the user.
Make sure to pick print followed by ( and then f, "You're ${goal - savings} away from your goal", ).
print
(
f
"You're ${goal - savings} away from your goal"
)