## itoa ### Instructions Write a function that takes an int and converts it to a string. The function returns the result in a char array that you must allocate. ## Expected function ```go func Itoa(n int) int { } ```