Write a bool function named insertAt that accepts a pointer to a string array, a string item, an index, and a count of existing elements in the array as arguments. The function should insert the given item at the specified index in the array and return true if the insertion is successful, otherwise return false.