alias list

I have never used an alias list before and I am confused that I can’t get say item 1 of the list. It returns the whole list

property MasterList1 : {}
set thisFolder to choose folder
tell application "Finder"
	set targetFolder to folders of thisFolder's entire contents as alias list
set end of MasterList1 to MasterList1 & targetFolder as list
	get item 1 of MasterList1
end tell

You’re putting that list of aliases inside another list, so the first item of that list is the list of aliases.

Thanks bruce. All clear now