12.273 напечатать слова образованные четными элементами каждой строки массива
Sure, here is a Python code snippet that prints words formed by even-indexed elements of each string in the array:
```python
array = ["apple", "banana", "cherry", "date"]
for string in array:
word = ""
for i in range(0, len(string), 2):
word += string[i]
print(word)
```
When you run this code with the given array, it will output:
```
ape
bna
cey
dt
```