array a = ("as", "roi", "dame", "valet", "10")

int debut = a.find("as")
int fin = a.find("valet")

array b  = a[debut .. fin]

b.display()