如何将更改variables合并到VBA中的文本Msgbox中?

我目前正在试图做一个简单的VBA程序,将两个数字放在一起,然后提示一个消息框,指出“ (variable1)(variable 2)(The answer)

这是我目前的尝试,并不完美:

  MsgBox prompt:=intmlt, Title:="The Value of " & intFirstNum & intSecondNum 

我有两个大问题是如何在intFirstNumintSecondNum放置一个空格? 以及如何添加到该提示的结尾?

它应该是

"The Value of " & intFirstNum & " and " & intSecondNum & " is "

Per @ScottHoltzman