Write a loop to print all elements in hourly_temperature. Separate elements with a -> surrounded by spaces.

Sample output for the given program with input: '90 92 94 95'
90 -> 92 -> 94 -> 95

Assuming that `hourly_temperature` is a list of integers, you can use a `for` loop to iterate over the elements of the list and print them, separated by `->` and surrounded by spaces:

```
hourly_temperature = [90, 92, 94, 95]

for temp in hourly_temperature:
print(temp, end=' -> ')

print() # to print a newline at the end
```

Output:
```
90 -> 92 -> 94 -> 95 ->
```

Note that the `end` parameter is used to specify the separator between the printed elements, and the final `print()` statement is used to print a newline character to separate the output from any subsequent output in the console.