I'm trying to mix six sound clips together.
Imagine each clip is a single guitar string pluck sound and I want to mix them to produce a guitar chord.
Here, a clip is an array of real numbers in the range [-1,1], where each number is a mono sample.
double mixed_sample = mix(double sample1, ..., double sample6);
Please, implement mix
!