No, the array elements are primitives, and you can't lock on them. (It wouldn't help if they were objects, either, because locking only helps for mutable objects. You want to lock the array index, not the contents at that index).
The only possible construct that comes to mind is to create a key that uniquely references the array index and synchronize on that (or use a Semaphore), but that will only help if the other thread accesses the array in the same way.
I'd say change your design, get rid of the int array and use a data structure that lets you synchronize the access to its elements (a List wrapped with Collections.synchronizedList()) would be a good starting point.