def Join(array, separator=' '):
    s = array[0]
    for i in array[1:]:
        s = s + separator + i
    return s