Determine the outputs y[4] and y[5] for the specified moving average filter and input sequence x[n]. Show your work.

x[n] = {2, 6, 3, 3, 1, 8, 9, 1}
filter: 3-point

y[4] = (2 + 6 + 3) / 3 = 3.67

y[5] = (6 + 3 + 3) / 3 = 4