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