C语言数组显示不对,请教一下哪里出了问题

#include<stdio.h>
#define SIZE 10
#define PAR 72
int main(void)
{
    int index, score[SIZE];
    int sum = 0;
    float average;

    printf("Enter %d golf score:\n", SIZE);
    for (index = 0; index < SIZE; index++)
        scanf_s("%d", &score[index]);
    printf("The scores read in are as follows: \n");
    for (index = 0; index < SIZE; index++)
        printf("%5d", score[SIZE],10);                                //这里显示不对
    printf("\n");
    for (index = 0; index < SIZE; index++)
        sum += score[index];
    average = (float)sum / SIZE;
    printf("Sum of scores = %d, average=%.2f\n", sum, average);
    printf("That's a handicap of %.0f.\n", average - PAR);

    return 0;
}
不知道哪里错了

 

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 以帮助更多的人 ^-^