How would I have maybe 6 or 7 audio clips play at random times from the enemy character? I'm trying to get it to say stuff like "Where'd he go?", "I see him!", etc. But it needs to have random time intervals between each clip. I studied the player footsteps script but I can't seem to adapt that to this problem.
Check out Random.Random range function and AudioSource.PlayClipAtPoint.
I would suggest you map your files into an array and then pick an index with the Random.Range function.
Good luck!