for _ in range(int(input())): input() cnt = 0 for x in map(int, input().split()): cnt += 2 <= x % 5 <= 3 print('First' if cnt % 2 else 'Second')