For some reason this is not working, I'm quite new to java so I am probably being naive.
public class CheckScore extends quiz{
    public void CheckScore() {
        String filename = "Data_CS";{
        try (BufferedReader br = new BufferedReader(new FileReader(filename))){
            String line;
            while ((line = br.readLine()) == "potato") {
                System.out.print("vde");
                System.out.print(line);
            }
            } 
         catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } 
         catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
       }        
    }
}
 
    