Using Java, write a program that contains an array. The arraywill contain the titles of your favorite books, games, shows, ormovies. You may make it as large as you desire, but only enter thetitles through user input.
Sample output: “Dragon Wing”, “Doom Patrol”, “Pokemon”, “StarWars”
NOTE: Include step-by-step instructions in hidden notes.
Solution
import java.util.Scanner;public class PrintMovies { public static void main(String[] args) { Scanner in = new Scanner(System.in); String[] movies = new String[5]; for (int i =
OR
OR