Final answer:
Functions use the 'return' statement to specify the results that they produce.
Step-by-step explanation:
Functions use the return statement to specify the results (or value) that they produce. The return statement is used to explicitly indicate that a function should stop executing and return a value to the caller. It allows a function to pass back a value to the code that called it, which can then be used in other parts of the program.