Your goal is to read the content of the reviews and produce a set of ratings. These ratings are then used to calculate an overall rating. The ratings for each review are calculated as follows: - **Review 1:** 10.0 - **Review 2:** 10.0 - **Review 3:** 10.0 - **Review 4:** 10.0 - **Review 5:** 3.5 - **Review 6:** 10.0 - **Review 7:** 0.3 - **Review 8:** 9.0 These individual ratings are then averaged across the 8 reviews to calculate the overall rating. The overall rating is calculated by summing all individual ratings and dividing by the total number of reviews (8). The sum of the individual ratings is 62.8. The overall rating is 62.8 divided by 8, which equals 7.85, rounded to one decimal place gives 7.9. The final output must be: 1) An array of 8 individual ratings, each as a number with one decimal place. 2) After the array, a line that says "Overall rating: X" with the calculated overall rating. This is the only output, without any additional text. The output is: [10.0, 10.0, 10.0, 10.0, 3.5, 10.0, 0.3, 9.0] Overall rating: 7.9