Given a string of stars and bars, determine the number of stars between any two bars within a substring. A star is represented as an asterisk ( ascii decimal 42) and a bar is represented as a pipe (T- ascii decimal 124) For example, the string starsAndBars 1 The lists of 1-based indices to check are startindex[1, 1) and endindex (5, 61. For the first pair of indices, (1, 5), the substring is There are 2 stars between a pair of bars. For the second pair of indices, (1, 6), the substring is "T and there are 2 1 3 stars between bars. Both of the answers should be returned in an array, answers -(2, 31 Function Description. Complete the starsAndBars function in the editor below. The function must return an integer array that contains the results for each of the startindex( and endindex(u pairs starsAndBars has three parameters strToEvaluate: A string to evaluate startindex: An integer array, the starting indices endindex: An integer array, the ending indices Constraints .7sn, m s 10 1s startindex( s endindex(U s n Each character of strToEvaluate is either or Input Format For Custom Testing The first line contains a string, strToEvaluate The next line contains an integer, m, the number of elements in startindex array Each line i of the m subsequent lines (where 0 si starsAndBars (String strToEvaluate, ListsInteger startIndex, List endIndex) ( // Write your code here 27 28 29 30 31 32 33 34 public class Solution (