Intro to Java
Description
In this project you are going to rework a program someone elsewrote using a new way of storing and organizing data. You will takea program that used arrays and implement it using ArrayListobjects. In general, ArrayList objects are easier to use thanarrays. For example, both perfect size and oversize arrays fitnicely into ArrayList objects. Commercial software engineers workwith other people’s code all the time, so it is a good experiencein general to have
import java.util.Arrays;
import java.util.Scanner;
import java.io.File;
import java.io.PrintWriter;
import java.io.FileNotFoundException;
/** This program is a word by word spelling checker. It relieson two dictionaries: a global
* dictionary and a personal dictionary
OR
OR