Exercise: Concatenate strings II

Fill in what's missing to concatenate a and b with the join method. Separate the strings by a blank space.
a = 'Hello' b = 'World' # desired output: 'Hello World'
text = ''.join([])
print(text)
Python
Setting up Python environment...
Output