If I want to write a string

"Menu: TBA
Wine: TBA
Price: TBA"

so that there is an enter after the first two TBAs

Currently I write "Menu: TBA Wine:TBA and Price: TBA, but I use spaces after the first two TBAs.

When I attempt to place the enter after the first two TBAs as such

"Menu: TBA
Wine: TBA
Price: TBA"

VBA automatically places open and close quotation marks to make it

"Menu: TBA"
"Wine: TBA"
"Price: TBA"

So basically, I want to know what should I place after the first two TBAs so that VBA understands I want a enter after the TBAs?