Given this table, what value ends up stored in `area` for an inserted row with width=4, height=5?CREATE TABLE rect ( width integer, height integer, area integer GENERATED ALWAYS AS (width * height) STORED );