Randomly generated content?

I’m really new to unity - hardly touched the program. I was just wondering if there was a way to randomly generate content? Specifically a path (audiosurf style http://www.youtube.com/watch?v=A71ZJzqMm-k)
If there is a way to do this - how would i go around it?

Cheers in advance.

Sounds like you want more than to just randomly generate a path. A path is just a collection of points (Vector3s), which you can easily generate randomly in any programming language. Are you wanting to recreate what you see in that video? If so, you should look into procedural mesh generation - there’s an example on the Unity website that shows you how to extrude a shape along a path. You can also look into iTween, which is a free library that allows you to create a smooth curve along a series of points.