Hello I'm a beginner in AutoLISP and need help with a pronlem ; i want to make a selection of lines SEL (setq SEL (ssget)) ; with LEN number of elements (setq LEN (sslength SEL)) ; then how can i give each element in the selection ; different name in a while loop automaticly (setq i 0) (while (< i LEN) (setq ENT (ssname SEL i)) ………… ) ; i want the first line of the selection to be ENT1 ; the second -> ENT2 and so on ; How to include the counter i in the variable name? THANKS