how to play a random sound at the position that you want in unity

Code Example - how to play a random sound at the position that you want in unity

                
                        using UnityEngine;

public AudioSource[] source; 

private void Start()
{
	AudioSource.PlayClipAtPoint(source[Random.Range(0, source.Length)], position);
}