import java.util.Scanner; public class DummyBackEnd { public String readText (Scanner fileScanner, String firstWord, String endWord) {return "I have read the text";} public String printWords (int low, int high) { return "The sum of high and low is "+(high+low); } }