TArray<AActor*> Add



	TArray<AActor*> actorArray;
	TArray<AActor*>* actorArrayReference = &actorArray;


TArray<AActor*> actorArray is a “TArray” containing a list of AActor pointers.

TArray<AActor*>* is a pointer to a TArray containing a list of AActor pointers. We initialize this to the address of (&) actorArray