How do i add all the sounds for my character through a script, instead of using the Inspector?

Unity 5.3.5.

I want to just load sounds and play through a script that searches for the sound you give it, in the Assets folder’s folder that you specify.

for example
play(scream.mp3 from folder Assets/Human Sounds);

Is that possible to do ? or do you have to always have the sounds loaded into fields in the inspector tab.

Reason i’m want to do it like this is because i’m loading characters(planning and learning how)into scenes by script selecting random or particular characters. So it’s not like i’m manually dragging the characters into the scene.
Thanks for your help

put all sounds in a folder
Assets/Resources/YourFolderName

and load them via

var clip = Resources.Load("YourFolderName/YourClipName") as AudioClip;