CMIS 141 Lab 2 Add a scrollable textarea to your coin flipping program (or use CoinFlip.java) and display the summary information in it, and, if the user wants (by using showConfirmDialog), display all the coin flipping data too. Experiment with not using the scrollpane, with not specifying the size of the textarea, and with not using linewrap so you understand how these factors interact. Try a different font in the textarea. Use the showStatus(yourStringHere) method to display running totals in the status bar of the applet. Access your web site, change your password, upload your Coin flipping applet to it. How to do that is here: http://sensei.ad.umuc.edu/dwills/cmis102a/lab2.txt Kadena: use Filezilla Foster: ues WS-FTP At home install one of the free FTP clients mentioned in the above lab2.txt and do the upload. Make another program that does die rollings (throwing one die). You can get a random integer from 1 to 6 by: (int)(Math.random()*6 + 1) Show the percentages of each number for one million rolls. Each should be about 1/6 Show the rolls in a scrollable textarea if the user wants to see them (hint: use showConfirmDialog).