There are many ways, I will show one of them. Let a random process be described by a function
matRealizations =
Table[Sin[RandomReal[-1, 1] t + RandomReal[]], {81}];
You can display them all together or selectively
Show[Table[
Plot[matRealizations[[i]], {t, -Pi, Pi}, PlotStyle -> Hue[i/81],
PlotRange -> {-1, 1}], {i, 1, 81, 1}]]
{Show[Table[
Plot[matRealizations[[i]], {t, -Pi, Pi}, PlotStyle -> Hue[i/81],
PlotRange -> {-1, 1}], {i, 1, 7, 1}]],
Show[Table[
Plot[matRealizations[[i]], {t, -Pi, Pi}, PlotStyle -> Hue[i/81],
PlotRange -> {-1, 1}], {i, {1, 5, 61, 70}}]]}
