iOS Swift - Concurrency
Find the problem in this Swift code snippet:
func fetchValue() async -> Int {
return 10
}
func process() async {
let value = fetchValue()
print(value)
}