def Join(array, separator=' '):
    return __import__('functools').reduce(lambda x, i: x + f'{i}{separator}', array, '')