Problem
Given a static array with the following declaration and definition, string states[6] = ["VIC", "NSW", "WA", "SA", "QLD", "TAS"], provide a C++ code snippet to print out the state names (those string values stored in the array, namely states) starting with the last index and working back to the first one, using a loop. For printing out a value, use SplashKit's write_line(...), don't use std:: cout when you answer this question.