SUGGESTIONS FOR AMENDMENTS TO THE PROGRAM
1. Update the menu to include choices 3 & 4
2. One menu choice may be to allow the user to attempt a guess of the complete phrase and the phrase does not have to be Case sensitive
3. Allow the user a limited number of guesses
4. Process the LettersGuessedArray (not currently used) and display all letters guessed
5. You are allowed to guess even if you have found all letters – how can this be stopped?
6. You can input more than one character when making a guess – what happens when you do this?
7. Validation (range checking) on choice number – currently accepts any number on main menu
8. Validation on size of phrase – must be no more than 20 characters
9. Use SELECT CASE choice for main program instead of IF statement
10. Display all records in the file
11. Generating a random number (must be integer) in the range 1 to 25 and getting that record number from the file.
12. Add new phrases to the end of the file
13. Read the file into an array, choose a random phrase from the array
14. Allow user to enter a phrase, check to see if it is in the array, if not add to the array and then write this out to the file.