====== SumOfDiceArray - Simulate rolling a pair of dice ====== ---- * Topics: Arrays, Strings, Loops ---- Use an array of Strings to implement the [[loops_lab_-_sum_of_dice|SumOfDice]] program. Write a program //SumOfDiceArray.java// that simulates rolling a pair of 6-sided dice 100 times. The [[https://piazza.com/class_profile/get_resource/hzkswvpxv2r2nu/i2qkjvzxiww71g|randbetween method]] will be useful here. You will need a loop that repeats 100 times. You will need strings to track the number of dice sums (sum=2 to sum=12). At the end, print a frequency chart of the dice sums that looks like the following: Dice Sums: 2: *** 3: ****** 4: ********** 5: ************** 6: *********** 7: ********** 8: ************* 9: *************** 10: ******* 11: ********** 12: * Hints: * You shouldn't need any //if// statements to track the 11 possible dice sums. [[https://piazza.com/class_profile/get_resource/hzkswvpxv2r2nu/i3hr12s0dwd4vq|Link to SumOfDiceArray.java (String array)]] [[https://piazza.com/class_profile/get_resource/hzkswvpxv2r2nu/i3hr1jmiz3520g|Link to SumOfDiceArray2.java (int array)]] ----