Practice Test Persistent Volume Claims - Can't get past Question 10

This question asks me to “update the Access Mode on the claim to bind it to the PV.” Is there anything else I need to do to bind the pvc to the pv? Here are files I’ve written and applied:

#pv-log.yaml
apiVersion: v1
kind: PersistentVolume
metadata:
  name: pv-log
spec:
  capacity:
    storage: 100Mi
  accessModes:
    - ReadWriteMany
  persistentVolumeReclaimPolicy: Retain
  hostPath:
    path: /pv/log
#claim-log-1.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: claim-log-1
spec:
  accessModes:
    - ReadWriteMany
  volumeMode: Filesystem
  resources:
    requests:
      storage: 50Mi

Not sure what I did, but I started over the lab and it’s now working.