What portion of your SQL statement will instruct the database to combine these two columns into a new column called “address”?

Correct
The portion of your SQL statement used to instruct the database to combine these two columns into a new column called “address” is CONCAT(street_address, " to ", unit) AS address.