initialise prefabs

right, after using the Instantiate command to create on objects how do I assign some values to it through code -I know I can use GameObject.FindWithTag but the problem is that there are very many just such objects - how do I access the one I just Instantiated and not some random one?

var myObject = Instantiate(somePrefab);

–Eric