Answer:
Functions act like "capsules" for your code to be stored in.
You can write code within these capsules so that every time you want to use this code, you can simply call the function with the necessary arguments to use that code.
This means functions allow you to reuse code, whilst making your code more readable, less repetitive, and look more professional.