Given a list of strings, return a new list where all the strings of the given list are concatenated together and separated by a space.
['hello', 'world', 'python']
'hello world python'
Bot