private static String query(String userId, String tweetTime) {
   String teamName = "cmucchackers";
   String teamId = "363781473979";
   int hashCode = EntryDAO.hashFunc(userId, tweetTime);
   // get the result from the data store with index starting from 0. (same as hashCode)
   String tweets = get(hashCode, userId, tweetTime);
   String result = teamName + ',' + teamId + '\n' + tweets;
   return result;
 }