Error program below.. pls help ..

import java.io.*;

public class FileWriterTest
{
FileWriter famex = new FileWriter("amex.txt");
famex.write("Success write into text file");
famex.close();
}

********** Error code ************
FileWriterTest.java6: Type Expected
famex.write("Success write into text file");
^
********** End Error code ************