====== Magic8Ball Simulation ====== ---- * Topics: Arrays, Strings ---- Write a program //Magic8Ball.java// to do the following: * In a loop: * Using Scanner, input any question from the user as a String. * If the user inputs "quit", then exit the loop immediately. * Output [[cs_176/magic_eight_ball_answers_in_string_array|1 of 20 possible answers]] at random. * The [[https://piazza.com/class_profile/get_resource/hzkswvpxv2r2nu/i2qkjvzxiww71g|randbetween method]] will be useful here. ----