Which node kind does this program print?

from Expression trees
C# 14 / .NET 10 beginner 2 min

Which node kind does this program print?

csharp
using System;
using System.Linq.Expressions;

Expression<Func<int, bool>> test = value => value > 10 && value < 20;
Console.WriteLine(test.Body.NodeType);
Open in playground
Report an error