struct array issue?

I am making an array of structures and when I build I keep getting the build error

error: expected unqualified-id before '[' token|

The line in question is

struct structureArray[2] = { firstStudent, secondStudent };

Any help here? I know that I am missing something trivial.
Replace struct with the name of the type that you want to store in the array.
Thank you so much. Knew it was something little.
Topic archived. No new replies allowed.